Skip to content

Instantly share code, notes, and snippets.

@d4rkcat
d4rkcat / adminfinder.py
Last active March 27, 2018 04:15
Multi-Threaded Brute-forcing of admin panels
#!/usr/bin/python
import argparse, subprocess, signal, Queue, time
from threading import Thread, Lock
from sys import argv, stdout
from os import getpid, kill
class myThread (Thread):
def __init__(self, threadID, name, q):
Thread.__init__(self)