From 6b96c72b66c028848c144366306ddec42ef2804c Mon Sep 17 00:00:00 2001 From: Dewalt <> Date: Wed, 31 May 2023 07:06:20 -0500 Subject: [PATCH] rev 1.6.9a google-chrome install source kali repo --- README.md | 3 +++ pimpmykali.sh | 16 +++++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 37e2939..2d2de40 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ # Writeups / Honorable Mentions - ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/ +# Revision 1.6.9a - changed google-chrome installation source + - is now installed from the kali repo google-chrome-stable + # Revision 1.6.9 - fix_impacket restored - menu options N, 0 and 1 are fully operational diff --git a/pimpmykali.sh b/pimpmykali.sh index 3eef038..d8598e8 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -9,7 +9,7 @@ # Standard Disclaimer: Author assumes no liability for any damage # revision var - revision="1.6.9" + revision="1.6.9a" # unicorn puke: red=$'\e[1;31m' @@ -291,12 +291,14 @@ fix_chrome() { elif [[ "$arch" == "amd64" ]]; then # need if statement here if arm64 , chrome does not exist in kali linux on arm64 as of yet - echo -e "\n $greenplus Gowitness dependancy fix: Downloading - google-chrome for $arch \n" - eval wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb - #eval wget https://dl.google.com/linux/deb/pool/main/g/google-chrome-stable/google-chrome-stable_109.0.5414.74-1_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb - echo -e "\n $greenplus Gowitness dependancy fix: Installing - google-chrome for $arch \n" - eval dpkg -i /tmp/google-chrome-stable_current_amd64.deb - rm -f /tmp/google-chrome-stable_current_amd64.deb + # echo -e "\n $greenplus Gowitness dependancy fix: Downloading - google-chrome for $arch \n" + # eval wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb + # echo -e "\n $greenplus Gowitness dependancy fix: Installing - google-chrome for $arch \n" + # eval dpkg -i /tmp/google-chrome-stable_current_amd64.deb + # rm -f /tmp/google-chrome-stable_current_amd64.deb + # --- old code to be removed --- + # --- added as of revision 1.6.9a - changed installation source to kali repo + eval apt -y install google-chrome-stable fi }