forked from Sliim/pentest-env
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Berksfile
44 lines (38 loc) · 1.01 KB
/
Berksfile
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
source 'https://supermarket.getchef.com'
cookbook 'pentest-env', path: 'cookbook/'
cookbook 'network_interfaces',
git: 'https://github.com/sliim-cookbooks/network_interfaces',
branch: 'fixes'
cookbook 'apache2'
cookbook 'apt'
cookbook 'aws'
cookbook 'build-essential'
cookbook 'database'
cookbook 'mysql'
cookbook 'openssl'
cookbook 'php', '= 4.6.0'
cookbook 'postgresql'
cookbook 'xfs'
cookbook 'xml'
cookbook 'hostname'
cookbook 'hostsfile'
cookbook 'elite'
cookbook 'chef-server'
# Wargames cookbooks
cookbook 'dvwa'
cookbook 'gruyere'
cookbook 'bricks'
cookbook 'webgoat'
cookbook 'vicnum'
# Pentest chef repo
cookbook 'kali'
cookbook 'tor-full', git: 'https://github.com/sliim-cookbooks/tor-full', ref: 'custom'
cookbook 'proxychains'
cookbook 'faraday'
cookbook 'couchdb', git: 'https://github.com/sliim-cookbooks/couchdb-cookbook'
cookbook 'beef'
cookbook 'pentester'
cookbook 'nessus'
cookbook 'nexpose'
custom_berks = 'Berksfile.custom'
eval(IO.read(custom_berks), binding) if File.exist?(custom_berks)