From 2a967fd2bb34d79f5cac2385ab136b7c95fede3a Mon Sep 17 00:00:00 2001 From: Dewalt-arch Date: Thu, 20 Jul 2023 02:31:19 -0500 Subject: [PATCH] release 1.7.4a --- README.md | 7 +++++-- pimpmykali.sh | 8 +++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bf8b41..6b2eed2 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,16 @@ # Writeups / Honorable Mentions - ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/ -# Revision 1.7.3a - update to start-peh-labs.sh - - included function in script to reset databases on startup +# Revision 1.7.4a - added chisel + - chisel added to menu options 0, N or 1 # Revision 1.7.4 - Winpeas update - script will now pull winpeas from the 20230419-b6aac9cb release, April 2023 - workaround for current issue of winpeas not being self contained +# Revision 1.7.3a - update to start-peh-labs.sh + - included function in script to reset databases on startup + # Revision 1.7.3 - PEH Web Lab update - Major Milestone! 2000+ Lines of code! - added installation for Practical Ethical Hacker WebApp Labs diff --git a/pimpmykali.sh b/pimpmykali.sh index c0d782b..ad3f38d 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.4" + revision="1.7.4a" # unicorn puke: red=$'\e[1;31m' @@ -227,6 +227,7 @@ fix_missing() { fix_bloodhound fix_proxychains fix_sshuttle + fix_chisel #fix_waybackurls } @@ -336,6 +337,11 @@ fix_sshuttle() { eval apt -y install sshuttle } +fix_chisel() { + echo -e "\n $greenplus Installing chisel" + eval apt -y install chisel + } + fix_linwinpeas() { # 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)