Hi how can i change register in specific addres?
for example i have this addres 0034534 and i want to change the register of eax
how can i do?
for example i have this addres 0034534 and i want to change the register of eax
how can i do?
you can do a simple example of script?Quote:
that easily done via inline asm.
step 1: allocate some memory
step 2: write your asm logic into the allocation (mov eax, <value>; push <nextAdress>; retn)
step 3: place a jmp at your adress (0x0034534) pointing to your allocation
Use my UDF and just Inject some ASM-Code which modifies your register:Quote:
you can do a simple example of script?
Where is the problem?Quote:
I read your udf but i need an example of script :) if possible
$size=5 ; Size of Opcodes overwritten, will be different from 5 for sure
$open=_MemoryManipulationOpen($process)
_InjectASMAtAddress($open, 0x0034534, $size, "MOV eax, 1000")