mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
12 lines
202 B
C
12 lines
202 B
C
|
/* test with server socket shellcode */
|
||
|
#include <stdio.h>
|
||
|
|
||
|
extern void process_syscall();
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
printf("Esperant rpc al port 8181...\n");
|
||
|
process_syscall();
|
||
|
return 0;
|
||
|
}
|