diff --git a/README.md b/README.md index 054c335..95b80c1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pimpmykali.sh b/pimpmykali.sh index 9850491..365b4fd 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -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() {