View previous topic :: View next topic |
Author |
Message |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Fri Sep 25, 2020 8:41 am Post subject: How can Automatic assembly breakpoint? |
|
|
As shown:
When I click Execute, the breakpoint will not be broken? How to do? :?
Description: |
|
Filesize: |
18.79 KB |
Viewed: |
1509 Time(s) |

|
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Fri Sep 25, 2020 8:45 am Post subject: |
|
|
add an infinite loop in front
Then after assembling go to that address, put a breakpoint on that loop to it breaks, and then replace the loop with a nop
_________________
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 |
|
 |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Fri Sep 25, 2020 8:56 am Post subject: |
|
|
Dark Byte wrote: | add an infinite loop in front
Then after assembling go to that address, put a breakpoint on that loop to it breaks, and then replace the loop with a nop |
Can you post the code? I do not quite understand,, :oops:
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Fri Sep 25, 2020 9:06 am Post subject: |
|
|
Code: |
globalalloc(demo,100)
createthread(demo)
label(hastowait)
registersymbol(hastowait)
demo:
cmp [hastowait],1
je demo
pushad
mov ecx,[cshell.dll+2015600+00000088]
mov eax,[ecx]
call dword ptr [eax+614]
popad
ret 4
hastowait:
dd 1
|
afterwards you can place a breakpoint at the start of the function, and when it breaks you can do writeInteger('hastowait',0) so it will continue
_________________
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 |
|
 |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Fri Sep 25, 2020 9:08 am Post subject: |
|
|
Dark Byte wrote: | Code: |
globalalloc(demo,100)
createthread(demo)
label(hastowait)
registersymbol(hastowait)
demo:
cmp [hastowait],1
je demo
pushad
mov ecx,[cshell.dll+2015600+00000088]
mov eax,[ecx]
call dword ptr [eax+614]
popad
ret 4
hastowait:
dd 1
|
afterwards you can place a breakpoint at the start of the function, and when it breaks you can do writeInteger('hastowait',0) so it will continue |
thank you very much! ! ! :)
|
|
Back to top |
|
 |
|