rev 1.6.9a google-chrome install source kali repo

This commit is contained in:
Dewalt 2023-05-31 07:06:20 -05:00
parent 2017798526
commit 6b96c72b66
2 changed files with 12 additions and 7 deletions

View File

@ -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

View File

@ -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
}