diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2020-04-16 15:05:28 -0400 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2020-04-16 15:05:28 -0400 |
commit | 88489a0cfe58bf85db2404071fe77d23878ad9d9 (patch) | |
tree | c10b70b05f062b31231bbb0d2c40421eb5fe14ff /kali.yml | |
parent | 54bfdca6b016d49eaa2589e6b65b6f37881b98c1 (diff) |
Finished Kali ansible setup
Diffstat (limited to 'kali.yml')
-rw-r--r-- | kali.yml | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/kali.yml b/kali.yml new file mode 100644 index 0000000..e950005 --- /dev/null +++ b/kali.yml @@ -0,0 +1,77 @@ +--- + - hosts: localhost + tasks: + - name: Installing base packages from apt + package: + name: + - terminator + - jxplorer + - seclists + - gobuster + - python3-pip + - crackmapexec + - neo4j + - openjdk-14-jdk + - rlwrap + - eog + - xclip + - exif + - steghide + - git + state: latest + + - name: Ensuring all packages are up to date + apt: + update_cache: yes + upgrade: dist + + - name: Clone JumboJohn + git: + repo: 'https://github.com/magnumripper/JohnTheRipper' + dest: /opt/JohnTheRipper + + - name: Clone Nishang + git: + repo: 'https://github.com/samratashok/nishang' + dest: /opt/nishang + + - name: Clone Chisel + git: + repo: 'https://github.com/jpillora/chisel' + dest: /opt/chisel + + - name: Clone LinEnum + git: + repo: 'https://github.com/rebootuser/LinEnum' + dest: /opt/LinEnum + + - name: Clone PEASS + git: + repo: 'https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite' + dest: /opt/privilege-escalation-awesome-scripts-suite + + - name: Clone PowerSploit + git: + repo: 'https://github.com/PowerShellMafia/PowerSploit' + dest: /opt/PowerSploit + + - name: Clone Impacket + git: + repo: 'https://github.com/SecureAuthCorp/impacket' + dest: /opt/impacket + + - name: Clone Bloodhound + git: + repo: 'https://github.com/BloodHoundAD/BloodHound' + dest: /opt/BloodHound + + - name: Get Evil-WinRM via gem installer + gem: + name: evil-winrm + state: latest + user_install: no + + - name: Disable mouse interactivity in vim + command: + cmd: echo -e "set mouse=\nset ttymouse=\n" >> /etc/vim/vimrc + removes: /etc/vim/vimrc
\ No newline at end of file |