Обновление радиуса портов

This commit is contained in:
justuser 2024-06-17 08:38:54 +03:00
parent e10043262c
commit 7b42fa0680

View File

@ -26,13 +26,13 @@ from domain_check import *
# 4. [+] Приём рассылки сайтов
# 5. [ ] Проверка всех сайтов
def port_gen(st = 4000, end = 4200):
def port_gen(st = 25000, end = 25200):
port = randint(st, end)
if client(port) == None:
return port
while client(port) != None:
port = randint(4000, 4200)
port = randint(st, end)
return port
def server_http():