diff --git a/README.md b/README.md index 013ffb3..202e352 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,11 @@ # Writeups / Honorable Mentions - 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 - current linpeas release downloaded to /opt/linpeas - current winpeas release downloaded to /opt/winpeas diff --git a/pimpmykali.sh b/pimpmykali.sh index 5cf41da..4f6c9a4 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -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_mitm6 # 05.09.2022 - added mitm6 to fix missing fix_linwinpeas + fix_neo4j + fix_bloodhound #fix_waybackurls } @@ -303,6 +305,16 @@ fix_waybackurls() { 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() { releases_url="https://github.com/carlospolop/PEASS-ng/releases/download/20230618-1fa055b6" dest_linpeas="/opt/linpeas"