I have made a bypass for the GG's PostMessageA hook. This dll includes two bypassed functions, one is the PostMessage and the other is the SetCursosrPos.
Now, i failed @ using visual basic to do a bot

which would use these functions but i am giving the dll out for you to do it.
The dll imports are here:
Quote:
Private Declare Function hndnsPMA Lib "hndns.dll" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Long) As Long
Private Declare Function hndns SCP Lib "hndns.dll" (ByVal xpos As Long, ByVal ypos As Long) As Long
|
Use the hndnsPMA for PostMessageA and hndnsSCP for SetCursorPos.
What i used as my VB code was this:
Quote:
Private Declare Function hndnsPMA Lib "hndns.dll" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Long) As Long
Private Declare Function hndnsSCP Lib "hndns.dll" (ByVal xpos As Long, ByVal ypos As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Sub Command1_Click()
Dim hWndCMD As Long
hWndCMD = FindWindow(vbNullString, "Untitled - Notepad") ///READ BELOW///
hndnsPMA hWndCMD, WM_KEYDOWN, vbKeyE, 0
hndnsPMA hWndCMD, WM_KEYUP, vbKeyE, 0
End Sub
|
I tried it with notepad and it didn't work, so it is the code and not GG. You need to insert "Dragonica (Current Ver : 0.908.1301)" as the window name when you want to use it for dragonica.
Scan:
Antivir: Nothing found
ArcaVir: Nothing found
Avast: Nothing found
AVG: Nothing found
BitDefender: Nothing found
F-Prot: Nothing found
Norman: Nothing found
Rising: Nothing found
VirusBlokAda32: Nothing found
VirusBuster: Nothing found
Scanned by
EDIT: Forgot to add the dll