Motley How do I cheat?
Reputation: 0
Joined: 07 Jan 2022 Posts: 5
|
Posted: Thu Feb 17, 2022 10:13 pm Post subject: CE Script to Fasm |
|
|
New to assembly. Trying to understand how I can change what I add to the stacks in a normal assembly way so i can move my current work to dynamic link libraries.
For example:
Code: |
alloc(newmem,2048)
newmem:
[ENABLE]
jmp returnhere
0xA701F00:
{ Some Code }
ret
returnhere:
[DISABLE]
|
0xA701F00: is invalid. I don't know if I have to find the window and all types of things for something so simple. Or if I can tell it where to go in memory and inject to the stacks there replacing code with my code. That little part I'm a little confused on |
|