You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/qemu_user/basic.c

13 lines
253 B
C

#include <unistd.h>
#include <sys/syscall.h>
char* str = "hello";
int main(int argc, char const* argv[])
{
// Starting from main, this program has about ~1500 instructions until exit in most arches
syscall(SYS_write,1,str,5);
return 0;
}