Update Tue Mar 22 04:46:13 PM CDT 2022
This commit is contained in:
parent
d02ee7f4bb
commit
c21b67be77
|
|
@ -35,6 +35,10 @@
|
|||
# Writeups / Honorable Mentions
|
||||
- ip3c4c_n00b https://ip3c4c.com/2202_homelab_vmware/
|
||||
|
||||
# Revision 1.5.0 - fix_bloodhound function update
|
||||
- removed hold on bloodhound at the start of the function to remove
|
||||
an additional complication that was being created
|
||||
|
||||
# Revision 1.4.9 - added assetfinder, added neo4j
|
||||
- added assetfinder precompiled binary to the following
|
||||
- Menu option 0
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# Standard Disclaimer: Author assumes no liability for any damage
|
||||
|
||||
# revision var
|
||||
revision="1.4.9"
|
||||
revision="1.5.0"
|
||||
|
||||
# unicorn puke:
|
||||
red=$'\e[1;31m'
|
||||
|
|
@ -496,7 +496,8 @@ python-pip-curl () {
|
|||
fix_bloodhound () {
|
||||
# Kali 2022.1 - bloodhound 4.1.0 incompatable collectors fix: downgrade to bloodhound 4.0.3
|
||||
apt_update
|
||||
eval apt -y install neo4j
|
||||
eval apt-mark unhold bloodhound # added - revision 1.5.0
|
||||
eval apt -y install neo4j
|
||||
echo -e "\n $greenplus Downgrading Bloodhound from current to 4.0.3"
|
||||
echo -e "\n $greenplus Removing Bloodhound"
|
||||
eval apt -y remove bloodhound
|
||||
|
|
|
|||
Loading…
Reference in New Issue