ItsMods

Full Version: Barata's REAL External Console Source C#
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
(02-12-2013, 15:23)archit Wrote: [ -> ]Back to the previous question then
(02-12-2013, 13:48)archit Wrote: [ -> ]So why is the stub being used for instead of just calling the function?

You cant call a function that its not yours unless its exported. At least in C#
(02-12-2013, 15:23)archit Wrote: [ -> ]Back to the previous question then
(02-12-2013, 13:48)archit Wrote: [ -> ]So why is the stub being used for instead of just calling the function?

How would i pass the parameters i want?

I create a stub modify the parameters/call address and them i can CreateRemoteThread...

Thanks Barata...
How did you convert the assembly instructions to byte array?
(02-12-2013, 16:19)archit Wrote: [ -> ]How did you convert the assembly instructions to byte array?

Every opcode has its byte assignation. http://ref.x86asm.net/coder32.html
Unable to understand that .How would this be converted into byte ? mov ebp, esp
(02-12-2013, 16:48)archit Wrote: [ -> ]Unable to understand that .How would this be converted into byte ? mov ebp, esp

Refer to kokole's post above...

Thanks Barata...
I saw that but still couldn't understand it maybe just one example
0x55, // push ebp
0x8B, 0xEC, // mov ebp, esp
0x83, 0xEC, 0x08, // sub esp, 8

Anymore examples?

Thanks Barata...
Why is this done ?
0x83, 0xEC, 0x08, // sub esp, 8
@archit Learn basic assembly before asking questions else we can go on with this all day.
Pages: 1 2 3 4