blob: 7b1b3d67c830d8e83f655528d553902d46351081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
---
# tasks file for individual-apps
- name: Install pwntools
ansible.builtin.pip:
name: git+https://github.com/Gallopsled/pwntools.git@dev
- name: Clone Invoke-Obfuscation (•_•) ( •_•)>⌐■-■ (⌐■_■)
ansible.builtin.git:
repo: 'https://github.com/danielbohannon/Invoke-Obfuscation'
dest: /opt/Invoke-Obfuscation
- name: Clone JumboJohn
ansible.builtin.git:
repo: 'https://github.com/magnumripper/JohnTheRipper'
dest: /opt/JohnTheRipper
- name: Compiling JumboJohn, hold onto yer butts...
ansible.builtin.command: chdir=/opt/JohnTheRipper/src {{ item }}
with_items:
- ./configure
- make
- make install
- name: Install trufflehog
ansible.builtin.pip:
name: trufflehog
- name: Install LDAPDomainDump
ansible.builtin.pip:
name: ldapdomaindump
- name: Clone Nishang
ansible.builtin.git:
repo: 'https://github.com/samratashok/nishang'
dest: /opt/nishang
- name: Clone Chisel
ansible.builtin.git:
repo: 'https://github.com/jpillora/chisel'
dest: /opt/chisel
- name: Clone LinEnum
ansible.builtin.git:
repo: 'https://github.com/rebootuser/LinEnum'
dest: /opt/LinEnum
- name: Clone PowerSploit
ansible.builtin.git:
repo: 'https://github.com/PowerShellMafia/PowerSploit'
dest: /opt/PowerSploit
- name: Clone Impacket
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"
args:
chdir: /opt/impacket
- 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/CBHue/PyFuscation.git'
dest: /opt/PyFuscation
- name: Clone Gef
ansible.builtin.git:
repo: 'https://github.com/hugsy/gef.git'
dest: /opt/gef
- name: Clone Static Binaries
ansible.builtin.git:
repo: 'https://github.com/andrew-d/static-binaries'
dest: /opt/static-binaries
- name: Clone Ysoserial
ansible.builtin.git:
repo: 'https://github.com/frohoff/ysoserial'
dest: /opt/ysoserial
- name: Clone Kerbrute
ansible.builtin.git:
repo: 'https://github.com/ropnop/kerbrute.git'
dest: /opt/kerbrute
- name: Building Kerbrute...
ansible.builtin.command: chdir=/opt/kerbrute make linux
- name: Downloading Ysoserial JAR file
ansible.builtin.get_url:
url: "{{ ysoserial_jar }}"
dest: /opt/ysoserial/ysoserial-all.jar
mode: '0644'
- name: Get Evil-WinRM via gem installer
community.general.gem:
name: evil-winrm
norc: yes
state: latest
user_install: no
|