Skip to content

Instantly share code, notes, and snippets.

@amtal
amtal / opcodes.py
Last active June 25, 2016 06:49 — forked from anonymous/opcodes.py
"""1-byte opcode list grouped by octet.
So, pretty much http://www.sandpile.org/x86/opc_1.htm but worse!
Requires: capstone, colorama (windows), click
"""
import capstone
import click
engine = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_32)