mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-05 01:49:11 -07:00
24 lines
518 B
Text
24 lines
518 B
Text
|
#!/bin/sh
|
||
|
|
||
|
#Populate root's home folder from /etc/skel
|
||
|
cp -ru /etc/skel/* /root/
|
||
|
|
||
|
#Time to git stuff...
|
||
|
cd /root/
|
||
|
git clone https://github.com/Veil-Framework/Veil.git
|
||
|
git clone https://github.com/leebaird/discover.git
|
||
|
git clone https://github.com/trustedsec/ptf
|
||
|
|
||
|
#Enable our desired services
|
||
|
ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
|
||
|
systemctl enable ssh
|
||
|
systemctl enable cups
|
||
|
systemctl enable apache2
|
||
|
systemctl enable mysql
|
||
|
systemctl enable postgresql
|
||
|
systemctl enable tor
|
||
|
systemctl enable cockpit.socket
|
||
|
|
||
|
msfdb init
|
||
|
|