Update Thu Oct 1 01:38:17 PM CDT 2020

This commit is contained in:
Dewalt 2020-10-01 13:38:17 -05:00
parent 4861280666
commit 24294a2a91
1 changed files with 3 additions and 1 deletions

View File

@ -96,6 +96,7 @@
fourblinkexclaim='\e[1;31m[\e[5;31m!!!!\e[0m\e[1;31m]\e[0m' fourblinkexclaim='\e[1;31m[\e[5;31m!!!!\e[0m\e[1;31m]\e[0m'
# variables needed in the script # variables needed in the script
silent='>/dev/null 2>&1'
force=0 force=0
check="" check=""
section="" section=""
@ -410,7 +411,8 @@ fix_impacket () {
pip install . pip install .
rm -f /tmp/impacket-0.9.19.tar.gz rm -f /tmp/impacket-0.9.19.tar.gz
# added as a result of blobs removal of impacket and problem with smbmap after # added as a result of blobs removal of impacket and problem with smbmap after
apt -y reinstall python3-impacket impacket-scripts >/dev/null 2>&1 #silent='>/dev/null 2>&1'
eval apt -y reinstall python3-impacket impacket-scripts $silent
echo -e "\n $greenplus python-pip python3-pip wheel impacket installed" echo -e "\n $greenplus python-pip python3-pip wheel impacket installed"
} }