script

WILD

Administrator
Staff member
ADMIN
SELLER
SUPREME
MEMBER
Joined
Jan 21, 2025
Messages
220
Reaction score
629
Deposit
0$
take this script below and paste into text edit save as finder2.py (save under whatever name you want) just make sure save the file as.py. no .txt
open terminal cd ~/Desktop . python3 finder2.py and see what happens. its actually pretty cool. what it does is scrapes ssn-verify.com
kind of fun

import random
import time
import logging
import requests
from bs4 import BeautifulSoup

# Set up logging
logging.basicConfig(filename='pre2011_allstates_no99_ssn.log', level=logging.INFO)

# Map of area numbers and their highest issued group number before 2011
high_group_map = {
1: 76, 2: 98, 3: 56, 4: 92, 5: 88, 6: 83, 7: 72, 8: 97, 9: 74,
10: 66, 11: 85, 12: 80, 13: 92, 14: 84, 15: 89, 16: 83, 17: 91,
18: 86, 19: 88, 20: 79, 21: 90, 22: 91, 23: 83, 24: 84, 25: 89,
26: 82, 27: 87, 28: 80, 29: 86, 30: 87, 31: 90, 32: 79, 33: 91,
34: 92, 35: 94, 36: 96, 37: 88, 38: 89, 39: 90, 40: 88, 41: 91,
42: 89, 43: 86, 44: 90, 45: 87, 46: 88, 47: 90, 48: 91, 49: 87,
50: 89, 51: 90, 52: 86, 53: 88, 54: 85, 55: 84, 56: 86, 57: 87,
58: 89, 59: 90, 60: 88, 61: 89, 62: 91, 63: 90, 64: 89, 65: 88,
66: 91, 67: 90, 68: 92, 69: 91, 70: 89, 71: 91, 72: 90, 73: 87,
74: 89, 75: 88, 76: 90, 77: 89, 78: 91, 79: 88, 80: 86, 81: 90,
82: 89, 83: 87, 84: 90, 85: 89, 86: 87, 87: 90, 88: 91, 89: 92
}

def is_valid_pre2011_ssn(area, group, serial):
if area not in high_group_map:
return False
if group == 0 or group == 99 or serial == 0:
return False
if group <= high_group_map[area]:
return False
if area == 666 or area >= 900 or area < 1:
return False
if f"{area:03d}-{group:02d}-{serial:04d}" in {"Carding Forum Top-45-6789", "078-05-1120", "000-00-0000"}:
return False
return True

def generate_valid_unissued_ssn():
while True:
area = random.choice(list(high_group_map.keys()))
group = random.randint(high_group_map[area] + 1, 98)
serial = random.randint(1, 9999)
if is_valid_pre2011_ssn(area, group, serial):
return f"{area:03d}-{group:02d}-{serial:04d}"

def search_ssn_online(ssn):
headers = {'User-Agent': 'Mozilla/5.0'}
query_url = f"https://html.duckduckgo.com/html/?q=\"{ssn}\""
try:
response = requests.get(query_url, headers=headers, timeout=10)
soup = BeautifulSoup(response.text, 'html.parser')
results = soup.find_all('a', class_='result__a')
return len(results) > 0
except Exception as e:
logging.error(f"Search error for {ssn}: {e}")
return True

def find_pre2011_ghost_all_states():
attempts = 0
while True:
ssn = generate_valid_unissued_ssn()
attempts += 1
print(f"🔍 Checking {ssn}... (#{attempts})")
seen_online = search_ssn_online(ssn)
if not seen_online:
print(f"\n🎯 VALID PRE-2011 UNUSED SSN FOUND (no group 99): {ssn}")
logging.info(f"✅ Ghost SSN: {ssn}")
break
else:
logging.info(f"❌ Seen online: {ssn}")
time.sleep(random.uniform(2.5, 4.5))

if __name__ == "__main__":
find_pre2011_ghost_all_states()
 
Top Bottom