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
|
# Writeups / Honorable Mentions
|
||||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
- 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
|
# Revision 1.7.1b - updated lin/winpeas function
|
||||||
- releases are now being dynamically checked for most current
|
- releases are now being dynamically checked for most current
|
||||||
- url in script should now never need updating
|
- url in script should now never need updating
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
# Standard Disclaimer: Author assumes no liability for any damage
|
# Standard Disclaimer: Author assumes no liability for any damage
|
||||||
|
|
||||||
# revision var
|
# revision var
|
||||||
revision="1.7.1b"
|
revision="1.7.1c"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
|
@ -216,6 +216,8 @@ fix_missing() {
|
||||||
fix_linwinpeas
|
fix_linwinpeas
|
||||||
fix_neo4j
|
fix_neo4j
|
||||||
fix_bloodhound
|
fix_bloodhound
|
||||||
|
fix_proxychains
|
||||||
|
fix_sshuttle
|
||||||
#fix_waybackurls
|
#fix_waybackurls
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -315,6 +317,14 @@ fix_bloodhound() {
|
||||||
eval apt -y install bloodhound
|
eval apt -y install bloodhound
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fix_proxychains() {
|
||||||
|
eval apt -y install proxychains
|
||||||
|
}
|
||||||
|
|
||||||
|
fix_sshuttle() {
|
||||||
|
eval apt -y install sshuttle
|
||||||
|
}
|
||||||
|
|
||||||
fix_linwinpeas() {
|
fix_linwinpeas() {
|
||||||
# get all the peas!!!
|
# get all the peas!!!
|
||||||
current_build=$(curl -s https://github.com/carlospolop/PEASS-ng/releases | grep -i "refs/heads/master" -m 1 | awk '{ print $5 }' | cut -d "<" -f1)
|
current_build=$(curl -s https://github.com/carlospolop/PEASS-ng/releases | grep -i "refs/heads/master" -m 1 | awk '{ print $5 }' | cut -d "<" -f1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue