today im gonna show you how to make undetected hacks.
some months ago i was trying to make my hacks undetected. i started to search on the internet and i found a dll. with that dll you can hide whatever process you like. its awesome because it makes it undetected.
English Tutorial:
---------------
[1.download the files and install the dll (tutorial is in the txt file)]
[2.make your hack (or bot/crosshair/zoomhack/whatever you want)]
[3.attach
#NoTrayIcon
$PID=ProcessExists("Your Compiled Hack.exe")
DllCall("HideProcessNT.dll", "long", "HideNtProcess", "dword", $PID)
to the first lines of your code]
[4.compile it (if you try to run your hack by pressing F5 or try compiling your script using F7 (doesn't happen with compiled scripts) it
sometimes happens that the desktop disappears for 1-2 seconds. and sometimes the scite window or all opened folder windows close when pressed F5/F7)]
[5.have fun with your undetected script.]
Deutsches Tutorial:
------------------
[1.downloade die dateien und installiere die dll (tutorial ist in der txt datei)]
[2.mach dir einen hack (oder bot/crosshair/zoomhack/was auch immer du willst)]
[3.füge
#NoTrayIcon
$PID=ProcessExists("Your Compiled Hack.exe")
DllCall("HideProcessNT.dll", "long", "HideNtProcess", "dword", $PID)
zu den ersten zeilen deines scripts hinzu]
[4.kompilliere deinen script (wenn du versuchst den hack per F5 zu starten oder versuchtst deinen script mit F7 zu kompillieren (passiert nicht bei kompillierten scripts) passiert es
manchmal dass der desktop für 1-2 sekunden verschwindet und offene ordnerfenster und scitefenster geschlossen werden)]
[5.viel spaß mit deinem neuen programm.]
now an example/nun ein beispiel:
CrossHair/Fadenkreuz
------------
#NoTrayIcon
#include <Misc.au3>
#include <WinAPI.au3>
#include <WindowsConstants.au3>
HotKeySet("{F8}","ONOFF")
$ONOFF="ON"
AdlibRegister("ExitCall",1)
Sleep(500)
$PID=ProcessExists("Fadenkreuz.exe")
DllCall("HideProcessNT.dll", "long", "HideNtProcess", "dword", $PID)
;ProcessWait("crossfire.exe")
$DC=_WinAPI_GetDC(0)
$Pen=_WinAPI_CreatePen($PS_SOLID,1,0x00FF00)
$obj_orig=_WinAPI_SelectObject($DC,$Pen)
_WinAPI_DrawLine($DC,@DesktopWidth/2-25,@DesktopHeight/2,@DesktopWidth/2+25,@DesktopHeight/2)
_WinAPI_DrawLine($DC,@DesktopWidth/2,@DesktopHeight/2-25,@DesktopWidth/2,@DesktopHeight/2+25)
While 1
If $ONOFF="ON" Then
$obj_orig=_WinAPI_SelectObject($DC,$Pen)
_WinAPI_DrawLine($DC,@DesktopWidth/2-25,@DesktopHeight/2,@DesktopWidth/2+25,@DesktopHeight/2)
_WinAPI_DrawLine($DC,@DesktopWidth/2,@DesktopHeight/2-25,@DesktopWidth/2,@DesktopHeight/2+25)
EndIf
WEnd
Func ONOFF()
If $ONOFF="OFF" Then $ONOFF="ON"
If $ONOFF="ON" Then $ONOFF="OFF"
EndFunc
Func ExitCall()
If _IsPressed(78) Then
Exit 0
EndIf
EndFunc
its not my fault if someone makes a badass virus using this piece of code!
DLL VT:
[Only registered and activated users can see links. Click Here To Register...]
its 37/46 because the dll
can be used to hide processes (thats why VT says its a spy/rootkit/whatever). it does NOT do ANY harm to your computer!