Shell Code Wrapper

Marco Ramilli
Date
12 February 2010
Read
Share

Hi folks,

this is another quick post on this nice service from ShellCode 2 EXE .


Basically it wraps your shellcode in a nice and quick way to execute it. Rather then using a classic launch function like the following one:

shellcodetest.c

char code[] = "bytecode will go here!";

int main(int argc, char **argv)

{

int (*func)();

func = (int (*)()) code;

(int)(*func)();

}


just copy and paste the shellcode from metasploit or from your own one, and here we go... you'll be able to run into Windows machines without any trouble your favorite shell :D. If you don't need Windows PE header you can decide to keep only the byte-code by checking the checkbox in the bottom of the form. This is a very useful tool, thank you SandSprite .
Marco Ramilli
Date
12 February 2010
Read
Share
← Go back
Latest Posts

i-SOON Data Leak: Key Points

Introduction i-SOON (上海安洵), a prominent contractor for various Chinese government agencies such […]

Date
26.02.2024
Duration
5 min
Text
Marco Ramilli

X Gold Badges: a new proliferating market

When I saw a threat actor hijacking the X account of Google's […]

Date
08.01.2024
Duration
5 min
Text
Marco Ramilli

Technical Data Sheet: LOCKBIT 3.0

LOCKBIT 3.0 is a notorious Ransomware Group that was first identified on […]

Date
20.12.2023
Duration
5 min
Text
Marco Ramilli
1 2 3 236
Back to Top
magnifier