Skip to content

Instantly share code, notes, and snippets.

View jordan-wright's full-sized avatar
🎣

Jordan Wright jordan-wright

🎣
View GitHub Profile
@jordan-wright
jordan-wright / extract.sh
Last active February 28, 2018 17:53 — forked from PaulSec/extract.sh
Extract Java Sources from APK
#!/bin/sh
# check that 7z is installed
command -v 7z >/dev/null 2>&1 || { echo >&2 "This script requires 7z. Aborting."; exit 1; }
jdgui="/opt/jd-cli"
dex2jar="/opt/dex2jar-2.0/d2j-dex2jar.sh"
if [ $# -eq 0 ]
then