unfuck
Have fucked Python 2.7 bytecode? Let's unfuck it.
Overview
unfuck is a utility and library for unfucking obfuscated Python 2.7 bytecode. It is essentially a reimplementation of the Python VM with taint tracking. Some of the things unfuck can do:
- Remove opaque predicates
- Dead code elimination
- Restore some lost function names
- Cleanup obfuscated variable names
#1 and #2 are the two biggest items that Python decompilers trip over when attempting to reconstruct original Python source code.
Useful Wiki Resources
Usage
unfuck can either be used as a library or a command-line utility.
unfuck 0.2.0
USAGE:
unfuck [FLAGS] [OPTIONS] <input-obfuscated-file> <output-path> [graphs-dir] [SUBCOMMAND]
FLAGS:
--dry Dry run only -- do not write any files
-g Enable outputting code graphs to dot format
-h, --help Prints help information
-q Disable all logging
-V, --version Prints version information
-v Enable verbose logging
OPTIONS:
--decompiler <decompiler> Only dump strings frmo the stage4 code. Do not do any further processing [env:
UNFUCK_DECOMPILER=] [default: uncompyle6]
ARGS:
<input-obfuscated-file> Input obfuscated file
<output-path> Output file name or directory name. If this path is a directory, a file will be
created with the same name as the input. When the `strings-only` subcommand is
applied, this will be where the output strings file is placed
<graphs-dir> An optional directory for graphs to be written to [default: .]
SUBCOMMANDS:
help Prints this message or the help of the given subcommand(s)
strings-only
To unfuck a single file:
# deobfuscated.pyc can also be a directory
unfuck obfuscated.pyc deobfuscated.pyc
You can also provide additional flags to dump strings to a file, or dump dot graphs that can be viewed in graphviz:
# -g is for printing graphs
unfuck -g obfuscated.pyc deobfuscated.pyc
# use the strings-only subcommand for dumping just dumping strings -- no deobfuscation is performed
unfuck deobufscated.pyc ./strings.csv strings-only
Building
unfuck requires Python 2.7 in your system's PATH. After ensuring it's present, you should be able to just cargo build. If for some reason the correct interpreter cannot be found, try setting the PYTHON_SYS_EXECUTABLE env var to your Python 2.7 interpreter path.
Installing
cargo install --force unfuck
Library Usage
NOTE: unfuck was not originally designed with library usage in mind, and therefore brings its own multithreading platform (in this case, Rayon).
Usage is fairly straightforward:
use TryInto;
use File;
let mut pyc_contents = vec!;
let pyc_file = open?;
pyc_file.read_to_end?;
// magic/moddate are specific to the PYC header and are required to be
// a valid PYC file
let magic = u32from_le_bytes;
let moddate = u32from_le_bytes;
let pyc_contents = &pyc_contents;
// Use a standard Python 2.7 opcode table
let deobfuscator = new;
let deobfuscator = if enable_graphs else ;
let deobfuscated_code = deobfuscator.deobfuscate?;
let mut deobfuscated_file = create?;
deobfuscated_file.write_all?;
deobfuscated_file.write_all?;
deobfuscated_file.write_all?;
greetz
gabe_k, yrp