Thread: OllyDbg

Results 1 to 9 of 9
  1. #1
    NeoStryker's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    18

    OllyDbg

    Can anyone tell me if there is any way to open Engine.exe in OllyDbg while the game is running?

  2. #2
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Get parameters from the launcher using a program which can display startup parameters.
    Open Engine.exe in Olly (dont attach, open a new process) and change the startup parameters.
    Restart the process and manually bypass HackShield and Blackcypher (nop init call + jump the jne/jnz and mov al,1 + retn for BC).
    Now you can run the game for 2 minutes with all debugger functions
    Have fun.

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  3. #3
    NeoStryker's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    18
    Thank you very much! Got the idea! But why two minutes?

  4. #4
    NeoStryker's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    18
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Get parameters from the launcher using a program which can display startup parameters.
    Open Engine.exe in Olly (dont attach, open a new process) and change the startup parameters.
    Restart the process and manually bypass HackShield and Blackcypher (nop init call + jump the jne/jnz and mov al,1 + retn for BC).
    Now you can run the game for 2 minutes with all debugger functions
    Have fun.
    Thank you! But opening Engine.exe by OllyDbg I can not find any string and no intermodular calls!

  5. #5
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by NeoStryker View Post
    Thank you! But opening Engine.exe by OllyDbg I can not find any string and no intermodular calls!
    2 minutes because hackshield has a heartbeat and will DC you automaticly.
    To find strings you have to run it to a certain point becuase the file was packed with winlicense/themida.
    Just run it and pause after its unpacked.

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  6. #6
    NeoStryker's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    18
    Quote Originally Posted by Ch40zz-C0d3r View Post
    2 minutes because hackshield has a heartbeat and will DC you automaticly.
    To find strings you have to run it to a certain point becuase the file was packed with winlicense/themida.
    Just run it and pause after its unpacked.
    [EDITED]

    Nice, from what I understand I will make the combat arms start without anti-hack, so I just put mov al, 1 in HS and BC initialization but gives crash on the login screen. I did something wrong?





    [OFF TOPIC]
    Where can I download your game, "Disbanded"?
    Attached Thumbnails Attached Thumbnails
    FxLXOf1.png  

    Last edited by NeoStryker; 12-01-2014 at 02:18 PM.

  7. #7
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by NeoStryker View Post
    [EDITED]

    Nice, from what I understand I will make the combat arms start without anti-hack, so I just put mov al, 1 in HS and BC initialization but gives crash on the login screen. I did something wrong?





    [OFF TOPIC]
    Where can I download your game, "Disbanded"?
    Maybe they added more protections to it, make sure ehsvc and blackcipher modules are never even loaded.
    If the crash is done by game you might even hook the API's like ExitProcess etc. to stopthe game from doing that or to find returnaddress and patch it manually.

    Download: https://ch4ozz-c0d3r.de/Game/
    Keep in mind its pre alpha and I dont have any servers open yet. Port is 1001 if you want to open one (UD and TCP)

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  8. #8
    NeoStryker's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    18
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Maybe they added more protections to it, make sure ehsvc and blackcipher modules are never even loaded.
    If the crash is done by game you might even hook the API's like ExitProcess etc. to stopthe game from doing that or to find returnaddress and patch it manually.

    Download: https://ch4ozz-c0d3r.de/Game/
    Keep in mind its pre alpha and I dont have any servers open yet. Port is 1001 if you want to open one (UD and TCP)
    Yes, has a check at login. I think that is related to this address:
    Code:
    0x7E0C08

  9. #9
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Well just set it to 1 then within cheat engine? (for freezing it)

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

Similar Threads

  1. OllyDbg
    By bagpiperdude90 in forum Assembly
    Replies: 0
    Last Post: 10-12-2007, 10:36 PM
  2. ollydbg
    By radnomguywfq3 in forum General Game Hacking
    Replies: 0
    Last Post: 10-05-2007, 07:39 PM
  3. [Ollydbg][VIDEO] How to Attech to Warrock Withouth Punkbuster [ VIDEO ]
    By apezwijn in forum WarRock - International Hacks
    Replies: 2
    Last Post: 08-02-2007, 11:08 AM
  4. [Ollydbg] How to Attech to Warrock Withouth Punkbuster
    By apezwijn in forum WarRock - International Hacks
    Replies: 12
    Last Post: 08-02-2007, 10:39 AM
  5. Godmode Hack with Ollydbg Tutorial
    By emisand in forum Gunz Hacks
    Replies: 46
    Last Post: 02-20-2006, 06:12 PM