You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
432 B
25 lines
432 B
#include <stdio.h>
|
|
|
|
extern void code_start();
|
|
extern void code_end();
|
|
|
|
int main(void) {
|
|
printf("Shellcode size = %d oct\n", code_end - code_start);
|
|
|
|
char * i = (char *) code_start;
|
|
|
|
printf("char * shellcode = { %#hhx ", *i);
|
|
i++;
|
|
|
|
while (i < (char *) code_end) {
|
|
printf(", %#hhx", *i);
|
|
i++;
|
|
}
|
|
|
|
printf("}\n");
|
|
|
|
code_start();
|
|
|
|
return 0;
|
|
}
|
|
|
|
|