Skip to content

Instantly share code, notes, and snippets.

@Aetsu
Aetsu / get_crobat_domains.py
Created October 6, 2020 18:10
Discover new domains/subdomains with sonar.omnisint.io API
# pip3 install requests argparse
# @author: @aetsu
import logging
import requests
import json
import urllib3
import socket
import sys
import argparse
@Aetsu
Aetsu / get_certs_crtsh.py
Created October 6, 2020 18:08
Discover related domains and subdomains by iterating over all the certificates associated to a domain
# pip3 install pycrtsh validators tqdm
# @author: @aetsu
import sys
from tqdm import tqdm
import validators
from pycrtsh import Crtsh
DEBUG = False