[req]Conerting ASM into Codecaves TuT

Discuss about Programming here. You may release your source, post guide and even ask questions!

Moderator: wizme

Post Reply
PIEzLOVERS
Master of Darkness
Master of Darkness
Posts: 431
Joined: Sat Dec 12, 2009 9:01 pm
Location: Heaven !
Contact:

[req]Conerting ASM into Codecaves TuT

Post by PIEzLOVERS »

Hi .... Wondering if any pros on this forums has the time to help me ....
Please.....?
Here's The script

Code: Select all

[ENABLE]
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)

00531319:
jmp newmem
nop
returnhere:

newmem: //this is allocated memory, you have read,write,execute access
//place your code here
mov edi,0

originalcode:
mov [ebp+000000c8],edi

exit:
jmp returnhere
 
 
[DISABLE]

dealloc(newman)
00531319:
mov [ebp+000000c8],edi
i Have tried to do it alot of time but i just fail ._.
:(
Post Reply