release 1.7.4a
This commit is contained in:
parent
cc8076d4e6
commit
2a967fd2bb
|
|
@ -39,13 +39,16 @@
|
||||||
# Writeups / Honorable Mentions
|
# Writeups / Honorable Mentions
|
||||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
||||||
|
|
||||||
# Revision 1.7.3a - update to start-peh-labs.sh
|
# Revision 1.7.4a - added chisel
|
||||||
- included function in script to reset databases on startup
|
- chisel added to menu options 0, N or 1
|
||||||
|
|
||||||
# Revision 1.7.4 - Winpeas update
|
# Revision 1.7.4 - Winpeas update
|
||||||
- script will now pull winpeas from the 20230419-b6aac9cb release, April 2023
|
- script will now pull winpeas from the 20230419-b6aac9cb release, April 2023
|
||||||
- workaround for current issue of winpeas not being self contained
|
- workaround for current issue of winpeas not being self contained
|
||||||
|
|
||||||
|
# Revision 1.7.3a - update to start-peh-labs.sh
|
||||||
|
- included function in script to reset databases on startup
|
||||||
|
|
||||||
# Revision 1.7.3 - PEH Web Lab update
|
# Revision 1.7.3 - PEH Web Lab update
|
||||||
- Major Milestone! 2000+ Lines of code!
|
- Major Milestone! 2000+ Lines of code!
|
||||||
- added installation for Practical Ethical Hacker WebApp Labs
|
- added installation for Practical Ethical Hacker WebApp Labs
|
||||||
|
|
|
||||||
|
|
@ -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.7.4"
|
revision="1.7.4a"
|
||||||
|
|
||||||
# unicorn puke:
|
# unicorn puke:
|
||||||
red=$'\e[1;31m'
|
red=$'\e[1;31m'
|
||||||
|
|
@ -227,6 +227,7 @@ fix_missing() {
|
||||||
fix_bloodhound
|
fix_bloodhound
|
||||||
fix_proxychains
|
fix_proxychains
|
||||||
fix_sshuttle
|
fix_sshuttle
|
||||||
|
fix_chisel
|
||||||
#fix_waybackurls
|
#fix_waybackurls
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -336,6 +337,11 @@ fix_sshuttle() {
|
||||||
eval apt -y install sshuttle
|
eval apt -y install sshuttle
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fix_chisel() {
|
||||||
|
echo -e "\n $greenplus Installing chisel"
|
||||||
|
eval apt -y install chisel
|
||||||
|
}
|
||||||
|
|
||||||
fix_linwinpeas() {
|
fix_linwinpeas() {
|
||||||
# get all the peas!!!
|
# get all the peas!!!
|
||||||
current_build=$(curl -s https://github.com/carlospolop/PEASS-ng/releases | grep -i "refs/heads/master" -m 1 | awk '{ print $5 }' | cut -d "<" -f1)
|
current_build=$(curl -s https://github.com/carlospolop/PEASS-ng/releases | grep -i "refs/heads/master" -m 1 | awk '{ print $5 }' | cut -d "<" -f1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue