Idov31 / FunctionStomping

Shellcode injection technique. Given as C++ header, standalone Rust program or library.
https://idov31.github.io/2022/01/28/function-stomping.html
GNU General Public License v3.0
684 stars 97 forks source link

functionstomping architecture #7

Closed federico22285 closed 1 year ago

federico22285 commented 1 year ago

Hello @Idov31

I am currently studying slowly on related subjects and I am new to Rust, how do I compile this for 64bits?

functionstomping.exe is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.

Many thanks, Best regards, Federico

Idov31 commented 1 year ago

Hello @federico22285 , Please make sure that you have x64 toolchain installed, if not, you can refer to this documentation that explains how to add a toolchain: https://rust-lang.github.io/rustup/installation/windows.html .

Compiling is pretty straightforward after you have the right toolchain: cargo b -r to build it for release and cargo b to build it for debug.

Good luck with your journey and best regards, Ido