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
|
||||
- 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
|
||||
- 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.
|
||||
|
|
|
@ -100,6 +100,7 @@ fix_missing () {
|
|||
fix_golang $force
|
||||
fix_nmap
|
||||
fix_rockyou
|
||||
fix_python_requests
|
||||
#fix_pipxlrd # this about this one a bit
|
||||
}
|
||||
|
||||
|
@ -233,6 +234,17 @@ fix_grub () {
|
|||
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 (){
|
||||
mkdir -p /etc/gcrypt
|
||||
echo "all" > /etc/gcrypt/hwf.deny
|
||||
|
|
Loading…
Reference in New Issue