Update Fri Oct 30 05:47:18 AM CDT 2020
This commit is contained in:
parent
afd4ded55d
commit
18da455d95
|
@ -13,6 +13,9 @@
|
||||||
- cd pimpmykali
|
- cd pimpmykali
|
||||||
- sudo ./pimpmykali.sh
|
- sudo ./pimpmykali.sh
|
||||||
|
|
||||||
|
# Revision 1.0.1 Python-Requests
|
||||||
|
- added python requests and colorama installations to fix_missing and fix_all
|
||||||
|
|
||||||
# Revision 1.0.0 Atom replaces Gedit
|
# Revision 1.0.0 Atom replaces Gedit
|
||||||
- pimpmykali has reached a state of consistency and stability in the function it preforms
|
- pimpmykali has reached a state of consistency and stability in the function it preforms
|
||||||
version is being bumped to v1.0.0 to be more in line with version numbering standards.
|
version is being bumped to v1.0.0 to be more in line with version numbering standards.
|
||||||
|
|
|
@ -100,6 +100,7 @@ fix_missing () {
|
||||||
fix_golang $force
|
fix_golang $force
|
||||||
fix_nmap
|
fix_nmap
|
||||||
fix_rockyou
|
fix_rockyou
|
||||||
|
fix_python_requests
|
||||||
#fix_pipxlrd # this about this one a bit
|
#fix_pipxlrd # this about this one a bit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -233,6 +234,17 @@ fix_grub () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fix_python_requests (){
|
||||||
|
# requires python pip to be installed via curl
|
||||||
|
# eval curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py $silent
|
||||||
|
# eval python /tmp/get-pip.py $silent
|
||||||
|
# rm -f /tmp/get-pip.py
|
||||||
|
eval git clone https://github.com/psf/requests /opt/requests
|
||||||
|
cd /opt/requests
|
||||||
|
eval pip install colorama
|
||||||
|
eval pip install .
|
||||||
|
}
|
||||||
|
|
||||||
fix_bad_apt_hash (){
|
fix_bad_apt_hash (){
|
||||||
mkdir -p /etc/gcrypt
|
mkdir -p /etc/gcrypt
|
||||||
echo "all" > /etc/gcrypt/hwf.deny
|
echo "all" > /etc/gcrypt/hwf.deny
|
||||||
|
|
Loading…
Reference in New Issue