Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful

    hng classic norecoil + source code

    1 - open game or cheat as admin order does not matter.
    2 - in console you see options to choice

    source code:
    Code:
    ; +-----------------------------------------------------------------+
    ; |            hereos and generals classic no recoil                |
    ; |             started on 9.8.2015(m.d.y) by lava                  |
    ; |  if you want to donate to lava:                                 |
    ; |       BTC: 19X7KKkMZsu4dLC3wd93N3UHiDJdomb6Vd                   |
    ; +-----------------------------------------------------------------+
    
    .386
    .model flat, stdcall
    option casemap :none
    
    system proto c :dword
    
    include windows.inc
    include user32.inc
    include kernel32.inc
    include masm32.inc
    includelib msvcrt.lib
    
    includeLib user32.lib
    includeLib kernel32.lib
    includelib masm32.lib
    
    .data
    	hellomsg			db					"heroes and generals no recoil toggler coded in asm by: lava", 0dh, 0ah, "1     - no recoil : OFF", 0dh, 0ah, "enter - exit", 0dh, 0ah, "choice# ", 0 ; 82 bytes to edit off or on
    	choice				db					?
    	cmd1				db					"CLS", 0
    	cmd2				db					"PAUSE", 0
    	bo_norecoil			db					0
    	me32				MODULEENTRY32		<>
    	cmodule32first		db					"Module32First", 0
    	ckernel32_dll		db					"kernel32.dll", 0
    	cplayer_dll			db					"player.dll", 0
    	dw_hng				dd					?
    	dw_player			dd					?
    	snapshot			dd					?
    	pid					dd					?
    	dw_var				dd					?
    	
    	hwndname			db					"H&G", 0
    	waitingmsg			db					"waiting for H&G...", 0dh, 0ah, 0
    	hwnd				HWND				?
    	h_hng				HANDLE				?
    	bytes_to_write		db					01h, 00h
    	
    	failmsg				db					"you dont have enough privileges to edit memory", 0dh, 0ah, 0
    
    .code
    start:
    	push offset waitingmsg
    	call StdOut
    	
    findwindow_loop:
    	push 100
    	call Sleep
    	
    	push offset hwndname
    	push 0
    	call FindWindow
    	test eax,eax
    	je findwindow_loop
    	
    	mov [hwnd], eax
    	
    	push offset pid
    	push eax
    	call GetWindowThreadProcessId
    	
    	push pid
    	push 0
    	push [8h + 10h + 20h] ; PROCESS_VM_OPERATION + PROCESS_VM_READ + PROCESS_VM_WRITE
    	call OpenProcess
    	test eax, eax
    	je end_failed
    	
    	mov [h_hng], eax
    	
    	call get_hng
    	mov [dw_hng], eax
    	
    	mov eax, dw_hng
    	mov dword ptr [dw_var], eax
    	add [dw_var], 94B04h
    	
    	push 0
    	push 4
    	push offset dw_player
    	push dw_var
    	push h_hng
    	call ReadProcessMemory
    	
    	mov eax, [dw_player]
    	mov [dw_var], eax
    	add [dw_var], 36454Dh
    	add [dw_var], 3
    	
    	push 0
    	push 1
    	push offset bytes_to_write
    	push dw_var
    	push h_hng
    	call WriteProcessMemory
    	
    	mov eax, [dw_player]
    	mov [dw_var], eax
    	add [dw_var], 1E9074h
    	add [dw_var], 6
    
    begin:
    	push offset cmd1
    	call system
    	
    	call print_menu
    	
    	push 1
    	push offset choice
    	call StdIn
    	
    	cmp [choice], 31h
    	je toggle_norecoil
    	
    	jmp end_proc
    	
    print_menu:
    	push offset hellomsg
    	call StdOut
    	
    	ret
    
    toggle_norecoil:
    	call get_2_more_inputs
    	
    	cmp [bo_norecoil], 0
    	je enable_norecoil
    	
    	mov [bo_norecoil], 0
    	mov [hellomsg +82], 46h
    	mov [hellomsg +83], 46h
    	
    	push 0
    	push 1
    	push offset [bytes_to_write +1]
    	push dw_var
    	push h_hng
    	call WriteProcessMemory
    	
    	jmp begin
    	
    enable_norecoil:
    	mov [bo_norecoil], 1
    	mov [hellomsg +82], 4Eh
    	mov [hellomsg +83], 20h
    	
    	push 0
    	push 1
    	push offset bytes_to_write
    	push dw_var
    	push h_hng
    	call WriteProcessMemory
    	
    	jmp begin
    	
    	
    get_2_more_inputs:
    	push 1
    	push offset choice
    	call StdIn
    	push 1
    	push offset choice
    	call StdIn
    	
    	ret
    
    get_hng:
    	push pid
    	push 8 ; TH32CS_SNAPMODULE
    	call CreateToolhelp32Snapshot
    	mov snapshot, eax
    	
    	mov ecx, SIZEOF me32
    	mov me32.dwSize, ecx
    	
    	push offset ckernel32_dll
    	call GetModuleHandle
    	
    	push offset cmodule32first
    	push eax
    	call GetProcAddress
    	
    	push offset me32
    	push snapshot
    	call eax
    	
    	mov eax, me32.modBaseAddr
    	ret
    
    end_failed:
    	push offset failmsg
    	call StdOut
    
    	push offset cmd2
    	call system
    
    end_proc:
    	push 0
    	call ExitProcess
    
    end start
    virus scans:
    https://www.metascan-online.com/#!/r...a8da/extracted
    https://virusscan.jotti.org/en-US/fi...job/2vwzmpy3hy

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 37 Users Say Thank You to lala For This Useful Post:

    andaz0 (09-28-2015),artyom34 (09-13-2015),babytech1337 (09-15-2015),Behesht (09-13-2015),crunkor (09-08-2015),dark9011 (09-08-2015),derhacker1991 (09-20-2015),dracoxinca (09-11-2015),ETHerthethaethaetheh (09-11-2015),Fr0nt9 (09-10-2015),hobbs7 (09-10-2015),jetzon (09-15-2015),kartik saini (09-15-2015),lennert330 (09-09-2015),lordxerba90 (09-08-2015),MadMas (09-08-2015),matchgamer (04-07-2017),MiBzjeee (09-18-2015),octpos (09-08-2015),ozone5577 (09-08-2015),peppa1123 (09-11-2015),ProStyle7x (09-15-2015),Respektrometr (09-08-2015),RiSn (09-12-2015),Sandvich (09-08-2015),Sevenda (09-11-2015),sikamanga (09-14-2015),slavikmikoyan (09-08-2015),teamza555666 (09-13-2015),TheNapoxd (09-09-2015),troubled_joe (09-08-2015),tungstalker (09-10-2015),Uchiha Khildan (09-10-2015),utiklas40 (09-09-2015),Virtuozik (09-10-2015),Xavior9 (10-05-2015),XxMeedoxX (09-10-2015)

  3. #2
    MadMas's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    117
    thx good work

  4. #3
    slavikmikoyan's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    add aim bro

  5. #4
    Sandvich's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    23
    My Mood
    Cheeky
    Wonderful, any chance we will see aimbot update 4 ?

  6. #5
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful
    Quote Originally Posted by Sankhiro View Post
    Approve! Looks good mate, can't wait.
    you can download masm32 and compile that code ^^.

    - - - Updated - - -

    Quote Originally Posted by Sandvich View Post
    Wonderful, any chance we will see aimbot update 4 ?
    i think so

  7. #6
    ozone5577's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    good work man

  8. #7
    dark9011's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Texas
    Posts
    102
    Reputation
    16
    Thanks
    753
    My Mood
    Dead
    You tha man.
    [IMG]https://i53.photobucke*****m/albums/g58/dark9011/Signatures-Avatars/23123.png[/IMG]

  9. #8
    troubled_joe's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Thanks, checking

  10. #9
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    Looks good.
    //Approved

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


  11. The Following User Says Thank You to Color For This Useful Post:

    dark9011 (09-08-2015)

  12. #10
    xc3000cx's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Is there a more simple point? Directly can be used for this kind of small white is too difficult ~

  13. #11
    octpos's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    179
    Reputation
    10
    Thanks
    2,008
    My Mood
    Amused
    Nice code :} At first I was lost to get where you was writing, because u reused alot of vars... ahahaha. I'm trying to get infinite stamina, but I can find where it's calculated
    I played around at IDA pro, found some places, by trigging run and stoping, but I just get lost on debugger, can find nothing
    Do you have a methodology to debug games... you seems to find allot of stuff :} ... the best I did was "auto shooting", useless aahahaha...

    Anyway, thanks for the code :P

    - - - Updated - - -

    Quote Originally Posted by dark9011 View Post
    You tha man.
    Quote Originally Posted by ozone5577 View Post
    good work man
    Aahaha... she is a girl dudes...

  14. #12
    xSnowyAvenger's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    umm after the hotfix (15/9/2015), it doesn't work anymore. If u try to ON it, you'll just get crashes

  15. #13
    djkikusek's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Not working, game crashes

  16. #14
    kartik saini's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    not working...dont download...game crashes everytime

  17. #15
    TheNapoxd's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    could you please do an update? Thanks for your awesome work by the way

Page 1 of 2 12 LastLast

Similar Threads

  1. [Outdated] hng external aimbot source code
    By lala in forum Heroes & Generals Hacks & Cheats
    Replies: 1
    Last Post: 07-10-2015, 02:30 PM
  2. [Source Code] BF4 x64 ESP-Aimbot-Radar-Crosshair-NoRecoil & More | Source Code [By xtreme2010]
    By DadDelta in forum Battlefield 4 Hacks & Cheats
    Replies: 12
    Last Post: 09-22-2014, 11:55 AM
  3. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  4. keylogger source code
    By obsedianpk in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-24-2007, 02:31 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM