Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


is it Possible Change Mac Address in Cheat Engine

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
MrsXxX
Newbie cheater
Reputation: 0

Joined: 29 May 2020
Posts: 11

PostPosted: Wed Dec 23, 2020 5:46 am    Post subject: is it Possible Change Mac Address in Cheat Engine Reply with quote

is it Possible Change Mac Address in Cheat Engine
or when get ban from a game auto Changes mac address
if its have a way how can we do it Can help ?
Back to top
View user's profile Send private message
Csimbi
I post too much
Reputation: 97

Joined: 14 Jul 2007
Posts: 3340

PostPosted: Wed Dec 23, 2020 6:09 am    Post subject: Reply with quote

Why not change MAC address in the adapter settings?
Back to top
View user's profile Send private message
noobes
Advanced Cheater
Reputation: 0

Joined: 17 Dec 2018
Posts: 89

PostPosted: Thu Dec 24, 2020 5:48 am    Post subject: Re: is it Possible Change Mac Address in Cheat Engine Reply with quote

MrsXxX wrote:
is it Possible Change Mac Address in Cheat Engine
or when get ban from a game auto Changes mac address
if its have a way how can we do it Can help ?


I've recently came back to cheat engine forum, yes you can by using os.execute function to call regedit.exe.

Code:
os.execute([["reg.exe add "HKLM\\SYSTEM\\ControlSet001\\Control\\Class\\{4d36e972-e325-11ce-bfc1-08002be10318}\\00_the_network_card_you_need_to_spoof" /v "NetworkAddress" /t REG_SZ /d "your_spoofed_mac" /f"]])

I don't think you can exactly spoof the mac address using a specific cheat engine lua function

Exclamation If the code is wrong, it may be something similar to.
Back to top
View user's profile Send private message
MrsXxX
Newbie cheater
Reputation: 0

Joined: 29 May 2020
Posts: 11

PostPosted: Tue Jan 05, 2021 5:01 am    Post subject: Reply with quote

Hmm Thanks
and hwo can we Make Randomly spoof a Mac
Back to top
View user's profile Send private message
noobes
Advanced Cheater
Reputation: 0

Joined: 17 Dec 2018
Posts: 89

PostPosted: Tue Jan 05, 2021 5:09 am    Post subject: Reply with quote

MrsXxX wrote:
Hmm Thanks
and hwo can we Make Randomly spoof a Mac


like random generated mac address?
Back to top
View user's profile Send private message
MrsXxX
Newbie cheater
Reputation: 0

Joined: 29 May 2020
Posts: 11

PostPosted: Tue Jan 05, 2021 5:47 am    Post subject: Reply with quote

yeah
and is it possible spoof another device location in cheat engine
why i ask these ( these all for unban in a game )
Back to top
View user's profile Send private message
noobes
Advanced Cheater
Reputation: 0

Joined: 17 Dec 2018
Posts: 89

PostPosted: Wed Jan 06, 2021 5:52 am    Post subject: Reply with quote

MrsXxX wrote:
yeah
and is it possible spoof another device location in cheat engine
why i ask these ( these all for unban in a game )


To randomly generate a mac address, you should make random 48 bit numbers and letters. And yes you can spoof another adaptor
Back to top
View user's profile Send private message
lepa666
How do I cheat?
Reputation: 0

Joined: 11 Jan 2021
Posts: 6

PostPosted: Mon Jan 11, 2021 6:53 am    Post subject: I made a batch file that will randomly spoof the address. Reply with quote

I made a this batch file for you that will randomly spoof the address.
Then you just use ShellExecute to do that when you press the button.

CODE:
Code:

@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
SETLOCAL ENABLEEXTENSIONS
rem # Licensed under MIT
rem Code by 0Bx
mode con:cols=70 lines=12
cls
title MAC Address Changer!
FOR /F "tokens=1" %%a IN ('wmic nic where physicaladapter^=true get deviceid ^| findstr [0-9]') DO (
CALL :MAC
FOR %%b IN (0 00 000) DO (
REG QUERY HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\%%b%%a >NUL 2>NUL && REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\%%b%%a /v NetworkAddress /t REG_SZ /d !MAC!  /f >NUL 2>NUL
)
)
FOR /F "tokens=1" %%a IN ('wmic nic where physicaladapter^=true get deviceid ^| findstr [0-9]') DO (
FOR %%b IN (0 00 000) DO (
REG QUERY HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\%%b%%a >NUL 2>NUL && REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\%%b%%a /v PnPCapabilities /t REG_DWORD /d 24 /f >NUL 2>NUL
)
)
FOR /F "tokens=2 delims=, skip=2" %%a IN ('"wmic nic where (netconnectionid like '%%') get netconnectionid,netconnectionstatus /format:csv"') DO (
netsh interface set interface name="%%a" disable >NUL 2>NUL
netsh interface set interface name="%%a" enable >NUL 2>NUL
)
GOTO :EOF
:MAC
SET COUNT=0
SET GEN=ABCDEF0123456789
SET GEN2=26AE
SET MAC=
:MACLOOP
SET /a COUNT+=1
SET RND=%random%
SET /A RND=RND%%16
SET RNDGEN=!GEN:~%RND%,1!
SET /A RND2=RND%%4
SET RNDGEN2=!GEN2:~%RND2%,1!
IF "!COUNT!"  EQU "2" (SET MAC=!MAC!!RNDGEN2!) ELSE (SET MAC=!MAC!!RNDGEN!)
IF !COUNT!  LEQ 11 GOTO MACLOOP

mode con:cols=70 lines=12
cls
title MAC Address Changer
color 0a
echo Succesful! Your current MAC Address: %MAC%
echo Other stats:
echo # %GEN%
echo # %GEN2%
echo # %RND%
echo # %RNDGEN2%
echo # %RNDGEN%
echo THIS WAS MADE BY 0BX
echo This window closes in 5 seconds
ping localhost -n 6 >nul
exit


Create a new text file and change the extension to ".bat"
Drop the bat file into the folder your trainer is in and insert
Code:

function (Your form name)_CEPanel(Number here, you can also use button instead of panel etc.)MouseDown(sender, button, x, y)
ShellExecute("yourprogram.bat")
end

Into your lua table.

Note: This is for Wireless network adapter! Change it if you need and make sure the registry has "NetworkAddress" in the correct directory!!

Hope this helped Smile

_________________
Yeah that's fucked...
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites