From 37af6297cf0d2016a53f89baeadbba24aba29a53 Mon Sep 17 00:00:00 2001 From: Dewalt-arch Date: Tue, 5 Sep 2023 07:54:31 -0500 Subject: [PATCH] Revision 1.7.5 --- README.md | 3 +++ pimpmykali.sh | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e65c004..5b69612 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ # Writeups / Honorable Mentions - ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/ +# Revision 1.7.5 - removed menu option % + - mpgn's github page is now 404 status, installer will need rework + # Revision 1.7.4h - updated pipx installer for fix_cme - updated function to install pipx from apt diff --git a/pimpmykali.sh b/pimpmykali.sh index 541161a..ae50826 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -9,7 +9,7 @@ # Standard Disclaimer: Author assumes no liability for any damage # revision var - revision="1.7.4h" + revision="1.7.5" # unicorn puke: red=$'\e[1;31m' @@ -2066,7 +2066,7 @@ pimpmykali_menu() { echo -e " ! - Nuke Impacket (Type the ! character for this menu item)" # fix_sead_warning echo -e " @ - Install Nessus (Type the @ character for this menu item)" # install_nessus echo -e " $ - Nuke Nessus (Type the $ character for this menu item)" # remove_nessus - echo -e " % - CrackMapExec 6.x.x pipx (Type the % character for this menu item)\n" #fix_cme + # echo -e " % - CrackMapExec 6.x.x pipx (Type the % character for this menu item)\n" #fix_cme read -n1 -p " Press key for menu item selection or press X to exit: " menuinput case $menuinput in @@ -2104,7 +2104,7 @@ pimpmykali_menu() { ^) install_everything;; @) install_nessus;; $) remove_nessus;; - %) fix_cme;; + # %) fix_cme;; *) pimpmykali_menu ;; esac }