This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 24 Oct 2018 - Kali 2018.3 | |
# 20 Jan 2025 - very minor change for lsb_release | |
# 25 Jan 2025 - I still use this script all the time, but my focus has shifted to forensics and I don't use most of the pentesting stuff | |
# Therefore, I've cut almost all of that out, leaving all of the apt stuff, snap, and changing pip to pipx. | |
# Other minor changes include checks for root, ntpdate, and snap | |
# sudo wget https://raw.githubusercontent.com/BeanBagKing/kali_update/refs/heads/master/update.sh -O /usr/bin/update.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
####### | |
# | |
# Opens searchsploit results in Sublime | |
# | |
####### | |
script=$1 | |
YEL='\033[1;33m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
script=$1 | |
YEL='\033[1;33m' | |
NC='\033[0m' # No Color | |
if [ -z $script ]; then | |
echo "Usage: `basename $0` [KEYWORD]" | |
exit 1 | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# requirements: curl, html2text, sed | |
######### | |
# | |
# Author: BBK | |
# Date: 25 Feb 2016 | |
# Title: Kali Tools Search Engine | |
# |
NewerOlder