diff --git a/README.md b/README.md index 455a91a..27135f6 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,9 @@ # Writeups / Honorable Mentions - ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/ +# Revision 1.5.8 - fixed-http-shellshock.nse + - updated script to obtain file from pimpmykali github + # Revision 1.5.7 - Fix SSH Function - Menu option letter O Only (is not included in N, 0 or 1 at this time) - added function to set ssh to wide compatibility mode diff --git a/pimpmykali.sh b/pimpmykali.sh index ec557f2..477c0aa 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -9,7 +9,7 @@ # Standard Disclaimer: Author assumes no liability for any damage # revision var - revision="1.5.7" + revision="1.5.8" # unicorn puke: red=$'\e[1;31m' @@ -661,7 +661,7 @@ fix_nmap () { rm -f /usr/share/nmap/scripts/clamav-exec.nse echo -e "\n $redminus /usr/share/nmap/scripts/clamav-exec.nse removed " eval wget https://raw.githubusercontent.com/nmap/nmap/master/scripts/clamav-exec.nse -O /usr/share/nmap/scripts/clamav-exec.nse $silent - eval wget https://raw.githubusercontent.com/onomastus/pentest-tools/master/fixed-http-shellshock.nse -O /usr/share/nmap/scripts/http-shellshock.nse $silent + eval wget https://raw.githubusercontent.com/Dewalt-arch/pimpmykali/master/fixed-http-shellshock.nse -O /usr/share/nmap/scripts/http-shellshock.nse $silent echo -e "\n $greenplus /usr/share/nmap/scripts/clamav-exec.nse replaced with working version " }