Update Thu Apr 28 09:44:57 PM CDT 2022
This commit is contained in:
parent
4f62506a5c
commit
19a0659749
|
|
@ -31,13 +31,18 @@
|
|||
- 0xC0FFEE VirtualBox Home Lab Build (updated link!)
|
||||
https://benheater.com/building-a-security-lab-in-virtualbox/
|
||||
- TheMadHuman https://github.com/TMH-Sec
|
||||
- Aashiksamuel https://github.com/aashiksamuel (sublime install fix)
|
||||
|
||||
# Writeups / Honorable Mentions
|
||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
||||
|
||||
# Revision 1.5.3 - Sublime Installation updated
|
||||
- fix provided by aashiksamuel, thank you!
|
||||
- function sublime_install lines 768->780 updated
|
||||
|
||||
# Revision 1.5.2 - Python Requests
|
||||
- specified specific version of requests to use 2.2.1
|
||||
|
||||
|
||||
# Revision 1.5.1 - Downgrade Metasploit - Disabled
|
||||
- ruby has been upgraded to a default of 3.0
|
||||
- msf5 requires ruby 2.8 or lower
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# Standard Disclaimer: Author assumes no liability for any damage
|
||||
|
||||
# revision var
|
||||
revision="1.5.2c"
|
||||
revision="1.5.3"
|
||||
|
||||
# unicorn puke:
|
||||
red=$'\e[1;31m'
|
||||
|
|
@ -767,9 +767,14 @@ install_atom () {
|
|||
|
||||
install_sublime () {
|
||||
echo -e "\n $greenplus installing sublime text editor"
|
||||
eval wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
|
||||
# code fix provided by aashiksamuel
|
||||
eval wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --no-default-keyring --keyring ./temp-keyring.gpg --import
|
||||
eval gpg --no-default-keyring --keyring ./temp-keyring.gpg --export --output sublime-text.gpg
|
||||
eval rm temp-keyring.gpg temp-keyring.gpg~
|
||||
eval mkdir -p /usr/local/share/keyrings
|
||||
eval mv ./sublime-text.gpg /usr/local/share/keyrings
|
||||
eval apt-get install apt-transport-https
|
||||
eval echo "deb https://download.sublimetext.com/ apt/stable/" > /etc/apt/sources.list.d/sublime-text.list
|
||||
eval echo "deb [signed-by=/usr/local/share/keyrings/sublime-text.gpg] https://download.sublimetext.com/ apt/stable/" > /etc/apt/sources.list.d/sublime-text.list
|
||||
apt_update && apt_update_complete
|
||||
eval apt -y install sublime-text
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue