Skip to content

Instantly share code, notes, and snippets.

@irazasyed
irazasyed / Bulk-Email-Finder-Tool-README.md
Last active April 15, 2025 14:11
Bulk Email Finder - Guesses Email based on Permutator/owner name and other common patterns + validates them like Hunter and other tools.

Bulk Email Finder & Verifier

A Python script to generate and verify email addresses for websites at scale, with Hunter.io-style validation logic.

Features

  • Bulk CSV Processing: Handle thousands of websites in one run
  • Smart Pattern Generation: 35+ email patterns including international variants
  • Multi-Layer Verification:
  • Syntax validation (RFC compliant)
@simonwep
simonwep / blockadblock-blocker.tapermonkey.js
Last active September 11, 2025 15:42
Blocks BlockAdBlock scripts
// ==UserScript==
// @name BlockAdblock Blocker
// @version 1.0
// @namespace http://tampermonkey.net/
// @description Blocks block-adblock
// @match *://**/*
// @grant none
// @run-at document-start
// ==/UserScript==
@JoeyChor
JoeyChor / checker.py
Last active April 15, 2025 14:11
Checks if an email exists on a mail server.
import sys, argparse, time, telnetlib
try:
import socks
except ImportError:
print("Proxy support is disabled.")
parser = argparse.ArgumentParser()
parser.add_argument("-e", "--email", help="The email to check")
parser.add_argument("-n", "--nameserver", help="The email server")
parser.add_argument("-p", "--nsport", help="The server port", type=int)
parser.add_argument("-t", "--timeout", help="The timeout in seconds", type=int)