-
Notifications
You must be signed in to change notification settings - Fork 260
Description
Exception has occurred: ConnectionError
('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
http.client.RemoteDisconnected: Remote end closed connection without response
During handling of the above exception, another exception occurred:
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
During handling of the above exception, another exception occurred:
File "C:\Users\mcazm\OneDrive\Masaüstü\AstralBazaar Grup Yakalayıcı\main.py", line 11, in groupfinder
r = requests.get(f"https://www.roblox.com/groups/group.aspx?gid={id}")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
i got an error if i use over 50 threads in my pc
`import os
import threading
import requests, random
from dhooks import Webhook
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW("AstralBazaar Grup Yakalayici")
def groupfinder():
id = random.randint(31368199, 35368199)
r = requests.get(f"https://www.roblox.com/groups/group.aspx?gid={id}")
if 'owned' not in r.text:
re = requests.get(f"https://groups.roblox.com/v1/groups/{id}")
if 'isLocked' not in re.text and 'owner' in re.text:
if re.json()['publicEntryAllowed'] == True and re.json()['owner'] == None:
hook.send(f'Hit: https://www.roblox.com/groups/group.aspx?gid={id}')
print(f"[+] Hit: {id}")
else:
print(f"[-] Gruba giris yasak: {id}")
else:
print(f"[-] Grup Kilitli: {id}")
else:
print(f"[-] Grubun Sahibi Var: {id}")
#your webhook
hook = input("[-] Webhook Linkini girin: ")
#number of threads
threads = int(input("[-] Threads sayisi: "))
while True:
if threading.active_count() <= threads:
threading.Thread(target=groupfinder).start()
`