From b559b7b65993b25caf4e497ecf23f619e393d6fd Mon Sep 17 00:00:00 2001 From: justuser Date: Tue, 18 Jun 2024 10:33:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BF=D1=83=D0=B1=D0=BB=D0=B8=D1=87=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9=20=D0=B0=D0=B4=D1=80=D0=B5=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- port_open.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/port_open.py b/port_open.py index a977335..1bfc939 100644 --- a/port_open.py +++ b/port_open.py @@ -2,15 +2,15 @@ from os import system, name from network import port_gen port = input("Введите порт: ") -dest = port_gen(7000, 9000) +dest = port_gen(25300, 25500) print(f"\nУдалённый ПОРТ: {dest}") print("\n[!] Не закрывайте это окно [!]\n") if name == "posix": - system(f"./bore local {port} --to jetwork.404.mn --port {dest}") + system(f"./bore local {port} --to bore.pub --port {dest}") elif name == "nt": - system(f"bore.exe local {port} --to jetwork.404.mn --port {dest}") + system(f"bore.exe local {port} --to bore.pub --port {dest}") else: print("Увы, вероятно Ваша ОС не поддерживается.") print("Завершение работы...")