Some basic offsets to let you play offline menu

User Tag List

Page 3 of 6 FirstFirst 123456 LastLast
Results 31 to 45 of 86
  1. #31
    ZeltMarv's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    5
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dclone View Post
    Are you sure that you don't have crashes with remapping only? I thought so too but it crashes after a random time of several minutes.
    That's the thing. My programming experience is quite limited so I haven't been able to do any remapping.

    I'm gonna try DLL injection to see if I can get around the CRC check like that.

    Some basic offsets to let you play offline
  2. #32
    ex0d's Avatar Member
    Reputation
    2
    Join Date
    Apr 2021
    Posts
    7
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dclone View Post
    Are you sure that you don't have crashes with remapping only? I thought so too but it crashes after a random time of several minutes.
    To be fair even several minutes is quite an achievement at this point. How did you do that? My process crashes immediately after remapping.

  3. #33
    MrNoble's Avatar ezclap CoreCoins Purchaser
    Reputation
    535
    Join Date
    Sep 2015
    Posts
    357
    Thanks G/R
    170/218
    Trade Feedback
    2 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ex0d View Post
    Thanks @ferib.

    Your solution enables memory write access (and seems to be bypassing CRCs based on the output) but unfortunately the game process crashes straight away on 'NtResumeProcess(hProcess);'. I can see memory changes to write while the process is still suspended and I see the offsets @king48488 mentioned. Changing them doesn't change the outcome though and the process still crashes immediately on NtResumeProcess.

    Edit: I forgot to add that even with CRC check section commented out it still crashes on Resume. It doesn't seem to like NtUnmapViewOfSection/ NtMapViewOfSection.
    Hook the thread creation WinAPI (or even syscall) and keep an eye on the thread permissions.
    There is a sneaky flag that prevents you from suspending threads.
    Any fool can write code that a computer can understand. good programmers write code that humans can understand.

  4. Thanks 0x7C, ex0d (2 members gave Thanks to MrNoble for this useful post)
  5. #34
    MrNoble's Avatar ezclap CoreCoins Purchaser
    Reputation
    535
    Join Date
    Sep 2015
    Posts
    357
    Thanks G/R
    170/218
    Trade Feedback
    2 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ex0d View Post
    To be fair even several minutes is quite an achievement at this point. How did you do that? My process crashes immediately after remapping.
    it's not, you just get an instant crash when you fuck up the assembly, but when your assembly is fine (but not 100% working) it wont crash, instead, the crc32 checks detects you.
    Any fool can write code that a computer can understand. good programmers write code that humans can understand.

  6. #35
    Zagorim's Avatar Member
    Reputation
    1
    Join Date
    May 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is all to patch the game in memory right ? Excuse the noob question but would it be a lot more complicated to make a patched .exe ?

  7. #36
    dclone's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    11
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ferib View Post
    Hook the thread creation WinAPI (or even syscall) and keep an eye on the thread permissions.
    There is a sneaky flag that prevents you from suspending threads.
    You mean thread suspension returns no error code but in reality threads are not suspended?

  8. #37
    ex0d's Avatar Member
    Reputation
    2
    Join Date
    Apr 2021
    Posts
    7
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ferib View Post
    Hook the thread creation WinAPI (or even syscall) and keep an eye on the thread permissions.
    There is a sneaky flag that prevents you from suspending threads.
    Thanks again @ferib

    I tried to find the thread causing the crash and I believe I found it. It's just one. It seems to have the same permissions as the others which resume just fine though. I should add that suspending and resuming the process without remapping (including the thread I am talking about) works fine without crashing the whole process.

    After running remapping, I can resume all threads in the process but one:
    threadSearch.jpg

    Please ignore different TIDs on the right. Screenshots are from different runs but it's the same thread 'Game.exe+0xafde0'.

    Since it seems to have the same permissions like the rest, I am not sure what I can do from here. This is the thread that resumed brings the process back to life and I can navigate things in game (unless remapped, then it crashes).
    Last edited by ex0d; 04-12-2021 at 05:34 PM.

  9. Thanks MrNoble (1 members gave Thanks to ex0d for this useful post)
  10. #38
    MrNoble's Avatar ezclap CoreCoins Purchaser
    Reputation
    535
    Join Date
    Sep 2015
    Posts
    357
    Thanks G/R
    170/218
    Trade Feedback
    2 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ex0d View Post
    Thanks again @ferib

    I tried to find the thread causing the crash and I believe I found it. It's just one. It seems to have the same permissions as the others which resume just fine though. I should add that suspending and resuming the process (including the thread I am talking about) works fine without crashing the whole process.

    After running remapping, I can resume all threads in the process but one:
    threadSearch.jpg

    Please ignore different TIDs on the right. Screenshots are from different runs but it's the same thread 'Game.exe+0xafde0'.

    Since it seems to have the same permissions like the rest, I am not sure what I can do from here. This is the thread that resumed brings the process back to life and I can navigate things in game (unless remapped, then it crashes).
    the "120+" thread should be equal to 'MAXIMUM_SUSPEND_COUNT', it's a trap that's probably used to detect suspending of the game.
    Any fool can write code that a computer can understand. good programmers write code that humans can understand.

  11. Thanks ex0d (1 members gave Thanks to MrNoble for this useful post)
  12. #39
    dclone's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    11
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ferib View Post
    the "120+" thread should be equal to 'MAXIMUM_SUSPEND_COUNT', it's a trap that's probably used to detect suspending of the game.
    Haha nice just found that blog post explaining how thread suspension works and thought of that trick to set suspend count to max.

  13. #40
    ex0d's Avatar Member
    Reputation
    2
    Join Date
    Apr 2021
    Posts
    7
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ferib View Post
    the "120+" thread should be equal to 'MAXIMUM_SUSPEND_COUNT', it's a trap that's probably used to detect suspending of the game.
    Thanks @ferib

    I had high hopes for this one as sounded quite likely to be the source of the problem. So I suspended all threads but that one (which has a suspend count at 127), ran the remapping (even without crc section) and resumed all threads but that particular one. That way the suspend count never changed and always stayed as 127. Unfortunately the process is still crashing.

  14. #41
    dclone's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    11
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Since I built a loader I am pretty sure that I do the remap before all but main thread and 2 other threads even exist. Both get suspended with previous suspend count == 0. I.e. I am pretty sure that while I am doing the remapping nobody is watching me. But even though I remap again back to original protection the game will crash after a few mins. So there must be some way how later on the remapping is detected. I have not applied any patches so it can't be that. And it can't be the hooks or such of the loader because when I do not remap at all then it runs forever.

  15. #42
    MrNoble's Avatar ezclap CoreCoins Purchaser
    Reputation
    535
    Join Date
    Sep 2015
    Posts
    357
    Thanks G/R
    170/218
    Trade Feedback
    2 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dclone View Post
    Since I built a loader I am pretty sure that I do the remap before all but main thread and 2 other threads even exist. Both get suspended with previous suspend count == 0. I.e. I am pretty sure that while I am doing the remapping nobody is watching me. But even though I remap again back to original protection the game will crash after a few mins. So there must be some way how later on the remapping is detected. I have not applied any patches so it can't be that. And it can't be the hooks or such of the loader because when I do not remap at all then it runs forever.
    On wow there are logfiles to indicate if its a 'security' crash or not, im not seeing any useful log files on D2R ;/
    Any fool can write code that a computer can understand. good programmers write code that humans can understand.

  16. #43
    ZeltMarv's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    5
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I managed to get the CRC bypass to work, but the game crashes a few seconds after it's launched :/ I'm guessing I'm hitting the same roadblocks as some people here

  17. #44
    dclone's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    11
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Those delayed randomised crashes are pretty smart by Blizzard - hard to reverse the origin and demoralising at the same time.

  18. #45
    MrNoble's Avatar ezclap CoreCoins Purchaser
    Reputation
    535
    Join Date
    Sep 2015
    Posts
    357
    Thanks G/R
    170/218
    Trade Feedback
    2 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Can confirm, the crc32 checks are the same as the ones I'm used to.
    Big thanks, @king48488 for poking my interests, was a fun challenge to get it working!

    Any fool can write code that a computer can understand. good programmers write code that humans can understand.

  19. Thanks Fritomaster, ZeltMarv, themp, inashu (4 members gave Thanks to MrNoble for this useful post)
Page 3 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [Selling] 6 x 55 Archeage Account with lots of properties to let you earn 1k gold
    By fatihbarut in forum ArcheAge Buy Sell Trade
    Replies: 0
    Last Post: 04-02-2016, 06:35 AM
  2. [Selling] RBG Boosting to 2200 / 2400/ 2600! For Gold and IRL money. You play your character!
    By Rbgboosters in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 06-11-2012, 07:29 PM
  3. Any hacks out with the feature to let you chat with opposite faction?
    By NeBz in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 06-23-2011, 08:36 AM
  4. Some hacks brought to you by ISXAOC
    By Pickled in forum Age of Conan Exploits|Hacks
    Replies: 15
    Last Post: 10-04-2008, 09:02 AM
  5. just to let you guys know....
    By Manky in forum World of Warcraft General
    Replies: 9
    Last Post: 09-24-2008, 02:04 PM
All times are GMT -5. The time now is 06:09 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search