Write a shellcode that calls a function, power(). power() is at 0x8032fc8. The base is at ebx and power will be at ecx.
I do not understand how to call the power function at 0x8032fc8.
So far I have:
push ecx
push ebx
call func_power
Thanks.
Write a shellcode that calls a function, power(). power() is at 0x8032fc8. The base is at ebx and power will be at ecx.
I do not understand how to call the power function at 0x8032fc8.
So far I have:
push ecx
push ebx
call func_power
Thanks.