From 789be8d87ac580e5ba2bae6cedfa3d304977d4cb Mon Sep 17 00:00:00 2001 From: Dewalt <> Date: Fri, 11 Dec 2020 13:05:42 -0600 Subject: [PATCH] Update Fri Dec 11 01:05:42 PM CST 2020 --- README.md | 9 +++++++++ pimpmykali.sh | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 688b9df..4fcc284 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,15 @@ - cd pimpmykali - sudo ./pimpmykali.sh +# Revision 1.0.4 - fix theHarvester + - This is only to be used in the following case : + - Kali 2020.4 has been apt upgraded and python3.9 is installed + - theHarvester is not functioning and is getting an error on uvloop + - this will set python3 to default to python3.9 + - git clones uvloop, applies fixes and recompiles + - git clones theHarvester, applies fixes and installs + - additional checks will be added in the future + # Revision 1.0.3 - Metasploit 6 to Metasploit 5 Downgrade Option / Apt Upgrade returns! - Menu option D has been added to preform the downgrade - will not be called by any other function diff --git a/pimpmykali.sh b/pimpmykali.sh index ca073b0..1ac3727 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -9,7 +9,7 @@ # Standard Disclaimer: Author assumes no liability for any damage # revision var - revision="1.0.3a" + revision="1.0.4" # unicorn puke: red=$'\e[1;31m' @@ -647,6 +647,7 @@ pimpmykali_menu () { echo -e " 9 - Pimpmyupgrade (apt upgrade with vbox/vmware detection)" # only_upgrade echo -e " (sources.list, linux-headers, vm-video)" # - empty line - echo -e " (holds metasploit-framework will not upgrade)\n" # - empty line - + echo -e " H - Fix theHarvester (fixes theHarvester)\n" # fix_theharvester echo -e " ! - Nuke Impacket (Type ! character for this menu item)\n" # fix_sead_warning echo -e " D - Downgrade Metasploit (Downgrade from MSF6 to MSF5)\n" # downgrade_msf echo -e " B - BlindPentesters 'The Essentials' tools & utilies collection\n" # bpt @@ -668,6 +669,7 @@ pimpmykali_menu () { !) forced=1; fix_sead_warning;; d|D) downgrade_msf ;; b|B) bpt ;; + h|H) fix_theharvester ;; x|X) echo -e "\n\n Exiting pimpmykali.sh - Happy Hacking! \n" ;; *) pimpmykali_menu ;; esac