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
# https://github.com/vulnersCom/nmap-vulners | |
# https://github.com/scipag/vulscan | |
nmap --script vulscan,nmap-vulners -sV 192.168.0.33 | |
# https://www.youtube.com/watch?v=3U1pJ-eJrAU&t=192s |
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
scapy | |
pycryptodomex | |
dnspython |
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
masscan | |
hping3 | |
mz | |
nmap | |
di | |
htop | |
vnstat | |
vnstati | |
iperf | |
iptraf-ng |
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
# https://www.heise.de/ratgeber/Linux-Shell-Bash-Clever-einrichten-und-einfaerben-4844232.html?seite=all | |
cdl() { | |
cd "$@" | |
if [ "$?" == 0 ]; then | |
ls | |
fi | |
} | |
backup() { | |
cp "$@" "$@".backup-`date +%Y%m%d`; } |
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
# How to scan network for open ports with Netcat | Simple port scanner | |
# https://www.youtube.com/watch?v=CKiw0JYHrwQ | |
# Thanks Daniel Lowrie from ITpro.TV! | |
for i in $(seq 1 65535); do nc -nvz -w 1 127.0.0.1 $i 2>&1; done | grep -v "refused" | |
# Display raw bytes in hex (bytes separated by colons) | |
hexdump IKE_SA_INIT.raw -v -e '/1 "%02X:"' | sed 's/:$//' |