Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/2019.4/postinstall.sh
1303 views
1
#!/usr/bin/bash
2
# Author nu11secut1ty
3
4
# Update
5
curl -s https://raw.githubusercontent.com/nu11secur1ty/Kali-Linux/master/updater/official_up.py | python
6
7
# nu11secur1ty conky monitoring
8
# curl -s https://raw.githubusercontent.com/nu11secur1ty/conky/master/conky.sh | bash
9
10
# ettercap 0.8.3
11
curl -s https://raw.githubusercontent.com/nu11secur1ty/ettercap/master/last_installer.sh | bash
12
13
# Cisco VPN
14
curl -s https://raw.githubusercontent.com/nu11secur1ty/Kali-Linux/master/VPN-Cisco/vpn.sh | bash
15
16
17
exit 0;
18
19