Update Sun Oct 11 12:14:09 AM CDT 2020
This commit is contained in:
parent
9c41eba968
commit
807c2338d4
|
@ -13,6 +13,9 @@
|
||||||
- cd pimpmykali
|
- cd pimpmykali
|
||||||
- sudo ./pimpmykali.sh
|
- sudo ./pimpmykali.sh
|
||||||
|
|
||||||
|
# Revision 0.5i
|
||||||
|
- added pip install xlrd function to fix_missing and fix_all
|
||||||
|
|
||||||
# Revision 0.5h
|
# Revision 0.5h
|
||||||
- minor code cleanup
|
- minor code cleanup
|
||||||
- 2nd warning screen of nuke impacket has been disabled and will no longer show
|
- 2nd warning screen of nuke impacket has been disabled and will no longer show
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# revision var
|
# revision var
|
||||||
revision="0.5h"
|
revision="0.5i"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
@ -96,6 +96,7 @@ fix_missing () {
|
||||||
eval apt -y install dkms build-essential $silent
|
eval apt -y install dkms build-essential $silent
|
||||||
python-pip-curl
|
python-pip-curl
|
||||||
python3_pip $force
|
python3_pip $force
|
||||||
|
fix_pipxlrd
|
||||||
fix_golang $force
|
fix_golang $force
|
||||||
fix_nmap
|
fix_nmap
|
||||||
}
|
}
|
||||||
|
@ -117,6 +118,10 @@ fix_all () {
|
||||||
# called as sub-function call of fix_all or fix_upgrade itself
|
# called as sub-function call of fix_all or fix_upgrade itself
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fix_pipxlrd () {
|
||||||
|
pip install xlrd
|
||||||
|
}
|
||||||
|
|
||||||
python-pip-curl () {
|
python-pip-curl () {
|
||||||
check_pip=$(pip --version | grep -i -c "/usr/local/lib/python2.7/dist-packages/pip")
|
check_pip=$(pip --version | grep -i -c "/usr/local/lib/python2.7/dist-packages/pip")
|
||||||
if [ $check_pip -ne 1 ]
|
if [ $check_pip -ne 1 ]
|
||||||
|
@ -492,7 +497,7 @@ pimpmykali_menu () {
|
||||||
echo -e "$asciiart"
|
echo -e "$asciiart"
|
||||||
echo -e "\n Select a option from menu: Rev:$revision"
|
echo -e "\n Select a option from menu: Rev:$revision"
|
||||||
echo -e "\n Options are 0 thru 9 and BPT :" # function call list
|
echo -e "\n Options are 0 thru 9 and BPT :" # function call list
|
||||||
echo -e "\n 1 - Fix Missing (pip pip3 golang nmapfix build-essential)" # fix_missing
|
echo -e "\n 1 - Fix Missing (pip pip3 golang nmapfix xlrd build-essential)" # fix_missing
|
||||||
echo -e " 2 - Fix /etc/samba/smb.conf (adds the 2 missing lines)" # fix_smbconf
|
echo -e " 2 - Fix /etc/samba/smb.conf (adds the 2 missing lines)" # fix_smbconf
|
||||||
echo -e " 3 - Fix Golang (installs golang)" # fix_golang
|
echo -e " 3 - Fix Golang (installs golang)" # fix_golang
|
||||||
echo -e " 4 - Fix Grub (adds mitigations=off)" # fix_grub
|
echo -e " 4 - Fix Grub (adds mitigations=off)" # fix_grub
|
||||||
|
|
Loading…
Reference in New Issue