add 6 and 7 digit ids

This commit is contained in:
fzorb 2025-05-26 20:56:47 +03:00
parent ec3354b569
commit c1ec877e44

View file

@ -18,7 +18,7 @@ proxies = {
running = True
while True:
attempt = "".join(random.choices(string.ascii_lowercase + string.digits, k=5))
attempt = "".join(random.choices(string.ascii_lowercase + string.digits, k=random.randint(5, 7)))
if config['proxyEnabled']:
r = requests.get(f"https://prnt.sc/{attempt}", proxies=proxies, headers=headers)
else: