View previous topic :: View next topic |
Author |
Message |
tptdynamic Newbie cheater
Reputation: 0
Joined: 06 Feb 2016 Posts: 13
|
Posted: Wed Mar 02, 2016 4:49 am Post subject: Suspend a process thread |
|
|
any ideas how to suspend a process thread with AA or Lua scripts. I need to suspend ntdll.dll!EtwNotificationRegister in client.exe process.
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Wed Mar 02, 2016 9:25 pm Post subject: |
|
|
Crash it?
Code: | xor eax,eax
mov eax,[eax] |
|
|
Back to top |
|
 |
tptdynamic Newbie cheater
Reputation: 0
Joined: 06 Feb 2016 Posts: 13
|
Posted: Wed Mar 02, 2016 11:32 pm Post subject: |
|
|
Not crash. Just because ntdll.... That protect game from debuger
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Thu Mar 03, 2016 3:08 am Post subject: |
|
|
how a about an infinite loop?
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
hhhuut Grandmaster Cheater
Reputation: 6
Joined: 08 Feb 2015 Posts: 607
|
Posted: Thu Mar 03, 2016 3:15 am Post subject: |
|
|
Which debugger do you use? Have you already tested the VEH, maybe that already solves the problem ...
|
|
Back to top |
|
 |
tptdynamic Newbie cheater
Reputation: 0
Joined: 06 Feb 2016 Posts: 13
|
Posted: Thu Mar 03, 2016 4:17 am Post subject: |
|
|
I tested Veh but not work. But how can i do infinite loop?
|
|
Back to top |
|
 |
Redouane Master Cheater
Reputation: 3
Joined: 05 Sep 2013 Posts: 363 Location: Algeria
|
Posted: Thu Mar 03, 2016 4:54 am Post subject: |
|
|
tptdynamic wrote: | I tested Veh but not work. But how can i do infinite loop? |
Code: |
alloc(continue,1024)
registersymbol(continue)
label(loop)
// thread executes here
loop:
cmp [continue],1 // if continue is not 1 then it'll loop
jne loop
// here, you are out of the loop (continue is 1)
// Run some more code, and jump somewhere
continue:
dd 0 |
Then write 1 to 'continue' to break from the loop (you can add that as a table entry, 'add address manually' then enter continue as address).
|
|
Back to top |
|
 |
tptdynamic Newbie cheater
Reputation: 0
Joined: 06 Feb 2016 Posts: 13
|
Posted: Thu Mar 03, 2016 7:35 am Post subject: |
|
|
Oh thank
|
|
Back to top |
|
 |
|