blob: 65984884ee28be593b5da35c17238d3a762b9bdb (
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
|
---
- hosts: localhost
tasks:
- name: Ensuring all packages are up to date
apt:
update_cache: yes
upgrade: dist
- name: Installing one-off packages from package manager
package:
name:
- terminator
- jxplorer
- seclists
- gobuster
- python3-pip
- crackmapexec
- neo4j
- openjdk-14-jdk
- rlwrap
- eog
- xclip
- exif
- steghide
- git
state: latest
- 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
blockinfile:
path: /etc/vim/vimrc
insertafter: EOF
state: present
block: |
" Added with ansible
set mouse=
set ttymouse=
|