Update Thu Sep 2 05:57:05 AM CDT 2021
This commit is contained in:
parent
a22b695122
commit
71ff11cbec
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue