Update Fri Feb 19 12:19:40 PM CST 2021
This commit is contained in:
parent
6cb4a97d2e
commit
0d77aa22f4
|
|
@ -16,6 +16,11 @@
|
||||||
- sudo ./pimpmykali.sh
|
- sudo ./pimpmykali.sh
|
||||||
- For a new kali vm, run menu option N
|
- For a new kali vm, run menu option N
|
||||||
|
|
||||||
|
# Revision 1.2.0 - Menu Option N Modified
|
||||||
|
- Downgrade Metasploit has been removed from Menu Option N
|
||||||
|
- Kali 2021.1 has been released with metasploit-framework 6.0.30-dev
|
||||||
|
- Downgrade Metasploit is now only available via menu option D
|
||||||
|
|
||||||
# Revision 1.1.9 - Gedit Connection Refused
|
# Revision 1.1.9 - Gedit Connection Refused
|
||||||
- added fix for gedit as root connection refused
|
- added fix for gedit as root connection refused
|
||||||
- Fix will be installed via :
|
- Fix will be installed via :
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
# Standard Disclaimer: Author assumes no liability for any damage
|
# Standard Disclaimer: Author assumes no liability for any damage
|
||||||
|
|
||||||
# revision var
|
# revision var
|
||||||
revision="1.1.9"
|
revision="1.2.0"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
|
@ -158,6 +158,7 @@ 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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# 02.02.21 - rev 1.1.8 - Turn off XFCE Power Management for user
|
# 02.02.21 - rev 1.1.8 - Turn off XFCE Power Management for user
|
||||||
fix_xfce_root() {
|
fix_xfce_root() {
|
||||||
eval wget $raw_xfce -O /root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
|
eval wget $raw_xfce -O /root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
|
||||||
|
|
@ -182,15 +183,6 @@ silence_pcbeep () {
|
||||||
echo -e "\n $greenplus Terminal Beep Silenced! /etc/modprobe.d/nobeep.conf \n"
|
echo -e "\n $greenplus Terminal Beep Silenced! /etc/modprobe.d/nobeep.conf \n"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Need to add arch type detection and then grab the right file
|
|
||||||
# fix_assetfinder () {
|
|
||||||
# echo -e "\n $greenplus installing assetfinder \n"
|
|
||||||
# wget https://github.com/tomnomnom/assetfinder/releases/download/v0.1.1/assetfinder-linux-amd64-0.1.1.tgz -O /tmp/assetfinder-linux-amd64-0.1.1.tgz
|
|
||||||
# eval tar xvfz /tmp/assetfinder-linux-amd64-0.1.1.tgz -C /usr/bin
|
|
||||||
# rm -f /tmp/assetfinder-linux-amd64-0.1.1.tgz
|
|
||||||
# echo -e "\n $greenplus assetfinder installed \n"
|
|
||||||
# }
|
|
||||||
|
|
||||||
fix_pipxlrd () {
|
fix_pipxlrd () {
|
||||||
eval pip install xlrd==1.2.0 --upgrade
|
eval pip install xlrd==1.2.0 --upgrade
|
||||||
# eval pip3 install xlrd --upgrade
|
# eval pip3 install xlrd --upgrade
|
||||||
|
|
@ -881,7 +873,7 @@ pimpmykali_menu () {
|
||||||
echo -e " (will not upgrade: metasploit-framework)" # -
|
echo -e " (will not upgrade: metasploit-framework)" # -
|
||||||
echo -e " 0 - Fix ALL (runs only 1 thru 8) \n" # fix_all
|
echo -e " 0 - Fix ALL (runs only 1 thru 8) \n" # fix_all
|
||||||
echo -e " N - NEW VM SETUP - Run this option if this is the first time running pimpmykali" # menu item only no function
|
echo -e " N - NEW VM SETUP - Run this option if this is the first time running pimpmykali" # menu item only no function
|
||||||
echo -e " This will run Fix All (0), Metasploit Downgrade (D) and Pimpmyupgrade (9)\n" #
|
echo -e " This will run Fix All (0) and Pimpmyupgrade (9)\n" #
|
||||||
echo -e " Additional Functions : " # optional line
|
echo -e " Additional Functions : " # optional line
|
||||||
echo -e " F - Broken XFCE Icons fix (will be executed in menu N and 9 automatically )" # fix_broken_xfce
|
echo -e " F - Broken XFCE Icons fix (will be executed in menu N and 9 automatically )" # fix_broken_xfce
|
||||||
echo -e " G - Fix Gedit Conn Refused (fixes gedit as root connection refused )" # fix_root_connectionrefused
|
echo -e " G - Fix Gedit Conn Refused (fixes gedit as root connection refused )" # fix_root_connectionrefused
|
||||||
|
|
@ -908,7 +900,7 @@ pimpmykali_menu () {
|
||||||
s|S) fix_spike ;;
|
s|S) fix_spike ;;
|
||||||
g|G) fix_root_connectionrefused ;;
|
g|G) fix_root_connectionrefused ;;
|
||||||
# g|g) fix_gowitness ;;
|
# g|g) fix_gowitness ;;
|
||||||
n|N) fix_all; downgrade_msf; only_upgrade;;
|
n|N) fix_all; only_upgrade;;
|
||||||
d|D) downgrade_msf ;;
|
d|D) downgrade_msf ;;
|
||||||
b|B) bpt ;;
|
b|B) bpt ;;
|
||||||
# h|H) fix_theharvester ;;
|
# h|H) fix_theharvester ;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue