Skip to content

Instantly share code, notes, and snippets.

View w9w's full-sized avatar

Max Yaremchuk w9w

View GitHub Profile
@w9w
w9w / gist:de90e9a039a68692de2c8f476df6f893
Last active January 5, 2021 13:24
Race condition multiple payloads
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=40,
requestsPerConnection=100
)
usernames = open("/Users/max/intruder1.txt", "r").readlines()
for username in usernames:
engine.queue(target.req, username.rstrip())
@w9w
w9w / tld_detection.py
Created October 29, 2020 19:57
Matching any website's TLD
import re
tlds_1st_lvl = [
"aaa",
"aarp",
"abarth",
"abb",
"abbott",
"abbvie",
"abc",