1.7.1c sshuttle proxychains added to N, 0 or 1
This commit is contained in:
parent
1d5c68561b
commit
2b0f3ce621
|
|
@ -39,6 +39,9 @@
|
|||
# Writeups / Honorable Mentions
|
||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
||||
|
||||
# Revision 1.7.1c - added proxychains and sshuttle
|
||||
- proxychains and sshuttle will be installed via menu options 0, N, or 1
|
||||
|
||||
# Revision 1.7.1b - updated lin/winpeas function
|
||||
- releases are now being dynamically checked for most current
|
||||
- url in script should now never need updating
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# Standard Disclaimer: Author assumes no liability for any damage
|
||||
|
||||
# revision var
|
||||
revision="1.7.1b"
|
||||
revision="1.7.1c"
|
||||
|
||||
# unicorn puke:
|
||||
red=$'\e[1;31m'
|
||||
|
|
@ -216,6 +216,8 @@ fix_missing() {
|
|||
fix_linwinpeas
|
||||
fix_neo4j
|
||||
fix_bloodhound
|
||||
fix_proxychains
|
||||
fix_sshuttle
|
||||
#fix_waybackurls
|
||||
}
|
||||
|
||||
|
|
@ -313,6 +315,14 @@ fix_neo4j() {
|
|||
fix_bloodhound() {
|
||||
echo -e "\n $greenplus Installing Bloodhound"
|
||||
eval apt -y install bloodhound
|
||||
}
|
||||
|
||||
fix_proxychains() {
|
||||
eval apt -y install proxychains
|
||||
}
|
||||
|
||||
fix_sshuttle() {
|
||||
eval apt -y install sshuttle
|
||||
}
|
||||
|
||||
fix_linwinpeas() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue