Update Thu Sep 2 05:57:05 AM CDT 2021

This commit is contained in:
Dewalt 2021-09-02 05:57:05 -05:00
parent a22b695122
commit 71ff11cbec
2 changed files with 13 additions and 0 deletions

View File

@ -34,6 +34,8 @@
# Revision 1.3.3 - pyftpdlib
- pyftpdlib added for python
- Menu options N, 0 or 1 will install pyftpdlib
- amass added precompiled binary
- Menu options N, 0 or 1 will install amass
# Revision 1.3.2 - Pimpmykali-Mirrors and updates
- Speedtest for kali linux repo mirrors (http only at this time)

View File

@ -195,6 +195,7 @@ fix_missing () {
fix_spike
fix_set
fix_pyftpdlib # 09.01.21 - added pyftpdlib for python2
fix_amass # 09.02.21 - added amass precompiled binary
check_chrome
fix_gowitness # 01.27.2021 added due to 404 errors with go get -u github.com/sensepost/gowitness
# fix_qterminal_history
@ -220,6 +221,16 @@ fix_all () {
# cat /etc/lightdm/lightdm-gtk-greeter.conf | sed 's/Kali-Dark/Kali-Light''/'
# add optional ugly-background fix?
fix_amass() {
echo -e "\n $greenplus installing amass"
wget https://github.com/OWASP/Amass/releases/download/v3.13.4/amass_linux_amd64.zip -O /tmp/amass_linux_amd64.zip
cd /tmp
unzip amass_linux_amd64.zip
cp /tmp/amass_linux_amd64/amass /usr/bin
rm -rf /tmp/amass*
echo -e "\n $greenplus amass installed"
}
fix_pyftpdlib() {
echo -e "\n $greenplus installing pyftpdlib"
eval pip install pyftpdlib