Update Wed Aug 31 06:40:24 AM CDT 2022

This commit is contained in:
Dewalt 2022-08-31 06:40:24 -05:00
parent 1fd37c3c4e
commit f2e6417498
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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 "
}