diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2022-03-21 16:47:04 -0400 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2022-03-21 16:47:04 -0400 |
commit | d69b4bf02836edfb4087149e0dda7fff806bf921 (patch) | |
tree | cd61b77d224f293ed30838e7bc23bc767dfc4c2b | |
parent | 24d5f4634b5531586647873271762940282687d0 (diff) |
Added some new packages, fixed some post-build issues
-rw-r--r-- | kali.yml | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -66,6 +66,10 @@ - remmina - sublime-text - golang-go + - ghidra + - bytecode-viewer + - ntpdate + - bloodhound state: latest - name: Install ShellUp! @@ -123,11 +127,19 @@ ansible.builtin.git: repo: 'https://github.com/SecureAuthCorp/impacket' dest: /opt/impacket + + - name: Installing Impacket + ansible.builtin.shell: "python3 /opt/impacket/setup.py build && python3 /opt/impacket/setup.py install" - - name: Clone Bloodhound + - name: Clone Bloodhound.py + ansible.builtin.git: + repo: 'https://github.com/fox-it/BloodHound.py.git' + dest: /opt/BloodHound.py + + - name: Clone PyFuscation ansible.builtin.git: - repo: 'https://github.com/BloodHoundAD/BloodHound' - dest: /opt/BloodHound + repo: 'https://github.com/CBHue/PyFuscation.git' + dest: /opt/PyFuscation - name: Clone Gef ansible.builtin.git: |