1.7.1a added bloodhound and neo4j to 0, N and 1
This commit is contained in:
parent
373da24709
commit
8872313666
|
|
@ -39,6 +39,11 @@
|
||||||
# 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.1a - updates
|
||||||
|
- google-chrome-stable changed to pull .deb from google
|
||||||
|
- added installation for Neo4j
|
||||||
|
- added installation for Bloodhound
|
||||||
|
|
||||||
# Revision 1.7.1 - added download function for all the peas
|
# Revision 1.7.1 - added download function for all the peas
|
||||||
- current linpeas release downloaded to /opt/linpeas
|
- current linpeas release downloaded to /opt/linpeas
|
||||||
- current winpeas release downloaded to /opt/winpeas
|
- current winpeas release downloaded to /opt/winpeas
|
||||||
|
|
|
||||||
|
|
@ -214,6 +214,8 @@ fix_missing() {
|
||||||
fix_gowitness # 01.27.2021 added due to 404 errors with go get -u github.com/sensepost/gowitness
|
fix_gowitness # 01.27.2021 added due to 404 errors with go get -u github.com/sensepost/gowitness
|
||||||
fix_mitm6 # 05.09.2022 - added mitm6 to fix missing
|
fix_mitm6 # 05.09.2022 - added mitm6 to fix missing
|
||||||
fix_linwinpeas
|
fix_linwinpeas
|
||||||
|
fix_neo4j
|
||||||
|
fix_bloodhound
|
||||||
#fix_waybackurls
|
#fix_waybackurls
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -303,6 +305,16 @@ fix_waybackurls() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fix_neo4j() {
|
||||||
|
echo -e "\n $greenplus Installing Neo4j"
|
||||||
|
eval apt -y install neo4j
|
||||||
|
}
|
||||||
|
|
||||||
|
fix_bloodhound() {
|
||||||
|
echo -e "\n $greenplus Installing Bloodhound"
|
||||||
|
eval apt -y install bloodhound
|
||||||
|
}
|
||||||
|
|
||||||
fix_linwinpeas() {
|
fix_linwinpeas() {
|
||||||
releases_url="https://github.com/carlospolop/PEASS-ng/releases/download/20230618-1fa055b6"
|
releases_url="https://github.com/carlospolop/PEASS-ng/releases/download/20230618-1fa055b6"
|
||||||
dest_linpeas="/opt/linpeas"
|
dest_linpeas="/opt/linpeas"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue