This file contains 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
Security Tool List | |
├───AD | |
│ ├───ACLPwn | |
│ ├───ACL_PWN | |
│ ├───ADAPE | |
│ ├───ADAudit | |
│ ├───ADCollector | |
│ ├───ADpwn | |
│ ├───ADRecon | |
│ ├───ADReconPowershell |
This file contains 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
#NMAP | |
nmap -T5 --host-timeout 4s --min-rate 1000 -PN -n -p <PORTAS> <SERVER> | |
#NETCAT | |
for i in {1..2000}; do nc -vz <SERVER> $i 2>&1 | grep -vi "failed"; done |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
Script used to pull down the current video descriptions from ippsec's youtube channel. | |
The raw output still has a few HTML tags that need to be manually removed and there | |
also seem to be multiple duplicates of videos that have been removed in the output | |
saved as ippsec-details.txt | |
""" | |
import re | |
import sys |
NewerOlder