Skip to content

Instantly share code, notes, and snippets.

View shakquraa's full-sized avatar
💭
unminifying js...

shakquraa

💭
unminifying js...
View GitHub Profile
@shakquraa
shakquraa / tenantpivot.py
Created February 4, 2026 20:28
Microsoft tenant–based domain discovery for bug bounty recon.
#!/usr/bin/env python3
import argparse
import sys
import time
import random
import os
import requests
UA = (
@shakquraa
shakquraa / dns-resolvers-fetcher.sh
Last active February 12, 2026 18:33
Simple Bash script to collect, deduplicate, and maintain fresh DNS resolvers for recon workflows.
#!/usr/bin/env bash
# Directory setup (portable & clean)
BASE_DIR="$HOME/.dns-resolvers"
TEMP_DIR="$BASE_DIR/temp"
FINAL_FILE="$BASE_DIR/resolvers.txt"
# Resolver sources
URLS=(
"https://gist.githubusercontent.com/sirkirby/2e83de47cef930baddedfb12e80a5558/raw/public-dns-resolvers.txt"