Skip to content

Instantly share code, notes, and snippets.

View LYoungJoo's full-sized avatar

YoungJoo Lee LYoungJoo

  • Seoul, Korea
View GitHub Profile
@LYoungJoo
LYoungJoo / keml_exploit.c
Created May 18, 2020 00:15
defcon 2020 keml
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <stdint.h>
#include <sys/ioctl.h>
#include <unistd.h>
@LYoungJoo
LYoungJoo / Basic Angr.md
Last active June 27, 2020 19:31
Practice angr

Top Level Interfaces

Project

>>> import angr

>>> p = angr.Project('/bin/true')

>>> p.filename
'/bin/true'