Skip to content

Instantly share code, notes, and snippets.

View kpouget's full-sized avatar

Kevin Pouget kpouget

View GitHub Profile
@kpouget
kpouget / Makefile
Last active November 19, 2016 08:39
SO_NAME := passme.so
BIN_DIR ?= .
GCC ?= gcc
SO_CFLAGS := -fPIC
SO_LDFLAGS := -fPIC -rdynamic -shared -ldl
CFLAGS := -g -O0
CRACK_ME := 101-crackme
#include <thread>
#include <atomic>
#include <iostream>
#include <cstring>
#include <event2/event.h>
#include <event2/thread.h>
#include <event2/listener.h>
#include <unistd.h>