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 | |
# |
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 | |
####### | |
# | |
# 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 | |
# 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
REM Performs nslookup on a list of IP's | |
for /F %i in (iplist.txt) do @nslookup %i 8.8.8.8 2>nul | find "Name" && echo %i |
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
## BBK 13 Mar 2016 | |
## Takes a LM hash (which is 14 characters max, and has no lowercase), and toggles cases to generate possible NTLM hashes. | |
## Lets try to get lucky: Do nothing, lowercase all, uppercase all, capitalise first lowercase rest, lowercase first capital rest. | |
## These possibilites will also be contained below. As I said, trying to get lucky. Also, sanity check. | |
: | |
l | |
u | |
c |
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
import sys | |
for x in range(1,256): | |
sys.stdout.write("\\x" + '{:02x}'.format(x)) |
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
# This was, ideally, a way to map SharePoint drives as network drives in Windows. I don't believe I ever got it working, but maybe | |
# it will come in handy for someone. | |
# http://community.office365.com/en-us/f/173/t/286802.aspx | |
# Reference the above for "steps" | |
# Adds sharepoint.com to the list of trusted sites | |
# AKA Step 1 |
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
# For servers in list, check if the folder exists | |
# Useful for detecting user folders, installed programs, etc. | |
Get-Content C:\Users\UserName\Desktop\DetectFolder\servers.txt | ` | |
Select-Object @{Name='ComputerName';Expression={$_}},@{Name='FolderExist';Expression={ Test-Path "\\$_\c$\program files"}} |
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 | |
####### | |
# Creates a flat text file list of NSE scripts suitable for searching via command line | |
# Used in conjunction with nsesearch.sh | |
# Replaces nmap_scripts.list gist | |
# Dependencies: html2text | |
####### | |
YEL='\033[1;33m' |
OlderNewer