diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2020-05-18 10:55:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 10:55:14 -0400 |
commit | fc41fe36c3b59390d1d50427641a34c6f62ef1fb (patch) | |
tree | 7f42dc8305145431975d952d1b83dbaf6ae17770 | |
parent | 37741bccd8dbbd621e80ca8bfacd0e55163d29e7 (diff) |
Added support for pwntools
-rw-r--r-- | kali.yml | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -51,13 +51,22 @@ - openjdk-13-jre - openjdk-13-jdk - libssl-dev + - python3 + - python3-pip + - python3-dev + - libffi-dev + - build-essential state: latest + - name: Install pwntools + pip: + name: git+https://github.com/Gallopsled/pwntools.git@dev + - name: Clone Invoke-Obfuscation (•_•) ( •_•)>⌐■-■ (⌐■_■) git: repo: 'https://github.com/danielbohannon/Invoke-Obfuscation' dest: /opt/Invoke-Obfuscation - + - name: Clone JumboJohn git: repo: 'https://github.com/magnumripper/JohnTheRipper' |