Skip to content

Instantly share code, notes, and snippets.

# https://www.iana.org/domains/root/db
# https://data.iana.org/TLD/tlds-alpha-by-domain.txt
# Version 2017031800, Last Updated Sat Mar 18 07:07:01 2017 UTC
AAA
AARP
ABARTH
ABB
ABBOTT
ABBVIE
ABC
# Dictionnaire des prénoms attribués aux enfants nés en France et en départements d'outre-mer entre 1900 et 2015.
# https://www.insee.fr/fr/statistiques/2540004
A
AADEL
AADIL
AAKASH
AALIYA
AALIYAH
AALYA
AALYAH
@zbetcheckin
zbetcheckin / Google_dorks
Created August 25, 2016 22:24
Some google dorks useful in footprinting
Replace 'X' with the domain name of your choice
# Back link
link:X -site:X
# Sub domain
site:X -site:www.X
# Url
inurl:X -site:X
https://www.reddit.com
/r/netsec
/r/crypto
/r/cryptography
/r/Malware
/r/reverseeningeering
/r/csirt_tools/
/r/computerforensics/
/r/antiforensics/
/r/securityctf
@zbetcheckin
zbetcheckin / show_all_your_ports_as_open.md
Last active June 6, 2023 14:36
Fun Python & Scapy script that will answer 'SYN ACK' to any TCP 'SYN' packet received on any port

Python - Scapy - Show all your ports as open

#!/usr/local/bin/python2
from scapy.all import *
os.system("iptables -A OUTPUT -p tcp -o eth0 --sport 1:65535 --tcp-flags RST RST -j DROP")
def packet(pkt):
    if pkt[TCP].flags == 2:
        print('SYN packet detected port : ' + str(pkt[TCP].sport) + ' from IP Src : ' + pkt[IP].src)
 send(IP(dst=pkt[IP].src, src=pkt[IP].dst)/TCP(dport=pkt[TCP].sport, sport=pkt[TCP].dport,ack=pkt[TCP].seq + 1, flags='SA'))