add 6 and 7 digit ids
This commit is contained in:
parent
ec3354b569
commit
c1ec877e44
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ proxies = {
|
||||||
running = True
|
running = True
|
||||||
|
|
||||||
while 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']:
|
if config['proxyEnabled']:
|
||||||
r = requests.get(f"https://prnt.sc/{attempt}", proxies=proxies, headers=headers)
|
r = requests.get(f"https://prnt.sc/{attempt}", proxies=proxies, headers=headers)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue