Skip to content

Instantly share code, notes, and snippets.

View cspensky's full-sized avatar

Chad Spensky cspensky

View GitHub Profile
@cspensky
cspensky / .gitignore
Last active October 21, 2019 20:33 — forked from BennettSmith/.gitignore
Google Protobuf v2.6.0 Build Script for iOS
protobuf
protobuf-2.6.0
protobuf-2.6.1
protobuf-master
@cspensky
cspensky / armemu.py
Last active August 7, 2021 18:15 — forked from aquynh/armemu.py
ARM Assembly, Emulation, Disassembly using Keystone, Unicorn, and Capstone
#!/usr/bin/python
import sys
from keystone import *
from unicorn import *
from unicorn.arm_const import *
from capstone import *
from capstone.arm import *
from capstone.x86 import *