rev 1.6.9a google-chrome install source kali repo
This commit is contained in:
parent
2017798526
commit
6b96c72b66
|
|
@ -39,6 +39,9 @@
|
||||||
# Writeups / Honorable Mentions
|
# Writeups / Honorable Mentions
|
||||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
- 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
|
# Revision 1.6.9 - fix_impacket restored
|
||||||
- menu options N, 0 and 1 are fully operational
|
- menu options N, 0 and 1 are fully operational
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.6.9"
|
revision="1.6.9a"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
|
@ -291,12 +291,14 @@ fix_chrome() {
|
||||||
elif [[ "$arch" == "amd64" ]];
|
elif [[ "$arch" == "amd64" ]];
|
||||||
then
|
then
|
||||||
# need if statement here if arm64 , chrome does not exist in kali linux on arm64 as of yet
|
# 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"
|
# 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/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"
|
||||||
echo -e "\n $greenplus Gowitness dependancy fix: Installing - google-chrome for $arch \n"
|
# eval dpkg -i /tmp/google-chrome-stable_current_amd64.deb
|
||||||
eval dpkg -i /tmp/google-chrome-stable_current_amd64.deb
|
# rm -f /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
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue