From aa690c09856adf2d53b12d22439fd4f1a00f860d Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 4 Mar 2017 17:41:26 -0800 Subject: [PATCH] Install Unicorn for pwndbg. --- dotfiles/john/john.conf | 6 ++++++ install.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dotfiles/john/john.conf b/dotfiles/john/john.conf index e70e0fa..18fe5fd 100644 --- a/dotfiles/john/john.conf +++ b/dotfiles/john/john.conf @@ -305,6 +305,12 @@ MinLen = 0 MaxLen = 7 CharCount = 69 +[Incremental:All5] +File = $JOHN/ascii.chr +MinLen = 5 +MaxLen = 5 +CharCount = 95 + # Some pre-defined word filters [List.External:Filter_Alpha] void filter() diff --git a/install.sh b/install.sh index cdfd420..c547a05 100755 --- a/install.sh +++ b/install.sh @@ -85,7 +85,7 @@ function install_pwndbg { PYTHON="${PYTHON}${PYVER}" local PY_PACKAGES=$HOME/.pwndbg/vendor ${PYTHON} -m pip install --target ${PY_PACKAGES} -Ur $HOME/.pwndbg/requirements.txt - ${PYTHON} -m pip install --target ${PY_PACKAGES} -U capstone + ${PYTHON} -m pip install --target ${PY_PACKAGES} -U capstone unicorn # capstone package is broken cp ${PY_PACKAGES}/usr/lib/*/dist-packages/capstone/libcapstone.so ${PY_PACKAGES}/capstone }