Skip to content

Instantly share code, notes, and snippets.

@diegoalbuquerque
diegoalbuquerque / infosec-tools.txt
Created April 12, 2020 11:20
many infosec tools
Security Tool List
├───AD
│ ├───ACLPwn
│ ├───ACL_PWN
│ ├───ADAPE
│ ├───ADAudit
│ ├───ADCollector
│ ├───ADpwn
│ ├───ADRecon
│ ├───ADReconPowershell
#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
@diegoalbuquerque
diegoalbuquerque / get_ippsec_details.py
Created August 21, 2019 12:24 — forked from sminez/get_ippsec_details.py
Find examples of pen testing methods and tools in videos by Ippsec (as of 26th June 2019)
#!/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