h3llfyr3
26-10-05, 14:21
Hi All,
trying to generate useable shellcode using shellforge...
Here's my localshell.c
#include <stdio.h>
int main(void)
{
char *arg[2];
arg[0] = "/bin/sh";
arg[1] = NULL;
execve("/bin/sh", arg, NULL);
}
H3llfyr3@slax:~/exploitdev/shellforge$ ./shellforge.py localshell.c
** Compiling localshell.c
** Tuning original assembler code
ERROR: Error at [call execve@PLT]: Symbol not found
any ideas on what is causing this?
trying to generate useable shellcode using shellforge...
Here's my localshell.c
#include <stdio.h>
int main(void)
{
char *arg[2];
arg[0] = "/bin/sh";
arg[1] = NULL;
execve("/bin/sh", arg, NULL);
}
H3llfyr3@slax:~/exploitdev/shellforge$ ./shellforge.py localshell.c
** Compiling localshell.c
** Tuning original assembler code
ERROR: Error at [call execve@PLT]: Symbol not found
any ideas on what is causing this?