apt install kali-linux-all
git clone https://github.com/internetwache/GitTools.git
nmap -sC -sV -oA initial 10.10.10.78nmap -sV -sC -oA nmap-tcp 10.10.10.84nmap -T4 -A -v -p 0-10000 10.10.10.8
| # remap prefix to Control + a | |
| set -g prefix ^a | |
| # bind 'C-a C-a' to type 'C-a' | |
| bind ^a send-prefix | |
| unbind ^b | |
| # Qualtiy of life stuff | |
| set -g history-limit 10000 | |
| set -g allow-rename off |
| #!/bin/bash | |
| if [ -z "$1" ] | |
| then | |
| echo "Usage: doNmap <ip address>"; | |
| else | |
| echo $1; | |
| nmap -p- -T4 -sC -sV -Pn -vvv "$1" > nmap.txt & | |
| tail -f nmap.txt; | |
| fi |
| #!/bin/bash | |
| if [ -z "$1" ] | |
| then | |
| echo "Usage: doGobuster <url> <wordlist> <extensions> <threads> <wildcard>"; | |
| else | |
| defaultWordlist="/usr/share/wordlists/dirb/common.txt" | |
| defaultExtensions="txt,php,html,py,htm,bak,bakup,old,zip" | |
| defaultThreads=100 | |
| wordlistMedium="/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt" |