ignore
This commit is contained in:
parent
d4da17099e
commit
35602c1a05
@ -1,6 +0,0 @@
|
||||
// Workspace: Target Program
|
||||
|
||||
//
|
||||
// String added via add_build_string() from C:/Sync/Arc/Projects/Jai/jails/Jails/bin/metaprogram/jails_diagnostics.jai:45.
|
||||
//
|
||||
JAILS_DIAGNOSTICS_BUILD :: true;
|
||||
BIN
.build/main.exp
BIN
.build/main.exp
Binary file not shown.
BIN
.build/main.lib
BIN
.build/main.lib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
318
config.json
318
config.json
File diff suppressed because one or more lines are too long
251
dialog.jai
251
dialog.jai
@ -53,13 +53,15 @@ dialog_proc :: (hwnd: HWND, msg: u32, wparam: WPARAM, lparam: LPARAM) -> LRESULT
|
||||
);
|
||||
SendMessageW(state.edit_hwnd, WM_SETFONT, cast(WPARAM) hFont, TRUE);
|
||||
|
||||
// Populate with existing URL if present
|
||||
existing_url, ok := read_entire_file("url.txt");
|
||||
if ok {
|
||||
trimmed := trim(existing_url);
|
||||
wide_url := utf8_to_wide(trimmed);
|
||||
// Populate with existing URL if present from config.json
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
existing_url := get_json_string_field(config_data, "\"_url\"");
|
||||
if existing_url {
|
||||
wide_url := utf8_to_wide(existing_url);
|
||||
SetWindowTextW(state.edit_hwnd, wide_url);
|
||||
free(existing_url);
|
||||
}
|
||||
free(config_data);
|
||||
}
|
||||
|
||||
state.ok_hwnd = CreateWindowExW(
|
||||
@ -105,11 +107,27 @@ dialog_proc :: (hwnd: HWND, msg: u32, wparam: WPARAM, lparam: LPARAM) -> LRESULT
|
||||
|
||||
trimmed_url := trim(url_utf8);
|
||||
if trimmed_url {
|
||||
write_entire_file("url.txt", trimmed_url);
|
||||
mode: string;
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
extracted_mode := get_json_string_field(config_data, "\"_mode\"");
|
||||
if extracted_mode {
|
||||
mode = copy_string(extracted_mode);
|
||||
} else {
|
||||
mode = copy_string("system_proxy");
|
||||
}
|
||||
free(config_data);
|
||||
} else {
|
||||
mode = copy_string("system_proxy");
|
||||
}
|
||||
defer free(mode);
|
||||
|
||||
minimal_json := tprint("{\n \"_url\": \"%\",\n \"_mode\": \"%\",\n \"inbounds\": [],\n \"outbounds\": []\n}", trimmed_url, mode);
|
||||
write_entire_file("config.json", minimal_json);
|
||||
state.url_saved = true;
|
||||
}
|
||||
} else {
|
||||
DeleteFileW(utf8_to_wide("url.txt"));
|
||||
DeleteFileW(utf8_to_wide("config.json"));
|
||||
state.url_saved = true;
|
||||
}
|
||||
DestroyWindow(hwnd);
|
||||
@ -201,3 +219,220 @@ show_config_url_dialog :: (parent_hwnd: HWND) -> bool {
|
||||
|
||||
return state.url_saved;
|
||||
}
|
||||
|
||||
show_config_port_dialog :: (parent_hwnd: HWND) -> bool {
|
||||
// Port Dialog Proc
|
||||
port_dialog_proc :: (hwnd: HWND, msg: u32, wparam: WPARAM, lparam: LPARAM) -> LRESULT #c_call {
|
||||
ctx: #Context;
|
||||
push_context ctx {
|
||||
state := cast(*Dialog_State) GetWindowLongPtrW(hwnd, GWLP_USERDATA);
|
||||
|
||||
if msg == {
|
||||
case WM_CREATE; {
|
||||
create_struct := cast(*CREATESTRUCTW) lparam;
|
||||
state = cast(*Dialog_State) create_struct.lpCreateParams;
|
||||
SetWindowLongPtrW(hwnd, GWLP_USERDATA, cast(LONG_PTR) state);
|
||||
|
||||
hFont := GetStockObject(DEFAULT_GUI_FONT);
|
||||
|
||||
label_hwnd := CreateWindowExW(
|
||||
0,
|
||||
utf8_to_wide("STATIC"),
|
||||
utf8_to_wide("Enter SOCKS/HTTP proxy port (default 10801):"),
|
||||
WS_CHILD | WS_VISIBLE,
|
||||
20, 20, 410, 20,
|
||||
hwnd,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
);
|
||||
SendMessageW(label_hwnd, WM_SETFONT, cast(WPARAM) hFont, TRUE);
|
||||
|
||||
state.edit_hwnd = CreateWindowExW(
|
||||
0,
|
||||
utf8_to_wide("EDIT"),
|
||||
utf8_to_wide(""),
|
||||
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER | ES_AUTOHSCROLL | ES_NUMBER,
|
||||
20, 45, 410, 25,
|
||||
hwnd,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
);
|
||||
SendMessageW(state.edit_hwnd, WM_SETFONT, cast(WPARAM) hFont, TRUE);
|
||||
|
||||
// Populate with existing port if present
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
port := 10801;
|
||||
if read_ok {
|
||||
port_str := get_json_val_field(config_data, "\"_port\"");
|
||||
if port_str {
|
||||
val, ok := to_integer(port_str);
|
||||
if ok {
|
||||
port = xx val;
|
||||
}
|
||||
free(port_str);
|
||||
}
|
||||
free(config_data);
|
||||
}
|
||||
|
||||
wide_port := utf8_to_wide(tprint("%", port));
|
||||
SetWindowTextW(state.edit_hwnd, wide_port);
|
||||
|
||||
state.ok_hwnd = CreateWindowExW(
|
||||
0,
|
||||
utf8_to_wide("BUTTON"),
|
||||
utf8_to_wide("OK"),
|
||||
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_DEFPUSHBUTTON,
|
||||
220, 85, 100, 30,
|
||||
hwnd,
|
||||
cast(HMENU) IDOK,
|
||||
null,
|
||||
null
|
||||
);
|
||||
SendMessageW(state.ok_hwnd, WM_SETFONT, cast(WPARAM) hFont, TRUE);
|
||||
|
||||
state.cancel_hwnd = CreateWindowExW(
|
||||
0,
|
||||
utf8_to_wide("BUTTON"),
|
||||
utf8_to_wide("Cancel"),
|
||||
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
||||
330, 85, 100, 30,
|
||||
hwnd,
|
||||
cast(HMENU) IDCANCEL,
|
||||
null,
|
||||
null
|
||||
);
|
||||
SendMessageW(state.cancel_hwnd, WM_SETFONT, cast(WPARAM) hFont, TRUE);
|
||||
|
||||
SetFocus(state.edit_hwnd);
|
||||
return 0;
|
||||
}
|
||||
case WM_COMMAND; {
|
||||
control_id := LOWORD(wparam);
|
||||
if control_id == IDOK {
|
||||
length := GetWindowTextLengthW(state.edit_hwnd);
|
||||
if length > 0 {
|
||||
buffer := cast(*u16) alloc((length + 1) * size_of(u16));
|
||||
defer free(buffer);
|
||||
|
||||
GetWindowTextW(state.edit_hwnd, buffer, length + 1);
|
||||
port_utf8 := wide_to_utf8(buffer);
|
||||
defer free(port_utf8);
|
||||
|
||||
val, ok := to_integer(trim(port_utf8));
|
||||
if ok && val > 0 && val <= 65535 {
|
||||
port := xx val;
|
||||
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
url := "";
|
||||
mode := "system_proxy";
|
||||
if read_ok {
|
||||
extracted_url := get_json_string_field(config_data, "\"_url\"");
|
||||
if extracted_url url = copy_string(extracted_url);
|
||||
|
||||
extracted_mode := get_json_string_field(config_data, "\"_mode\"");
|
||||
if extracted_mode {
|
||||
mode = copy_string(extracted_mode);
|
||||
} else {
|
||||
mode = copy_string("system_proxy");
|
||||
}
|
||||
|
||||
updated := set_json_metadata(config_data, url, mode, port);
|
||||
write_entire_file("config.json", updated);
|
||||
free(config_data);
|
||||
free(updated);
|
||||
} else {
|
||||
minimal_json := tprint("{\n \"_url\": \"\",\n \"_mode\": \"system_proxy\",\n \"_port\": %,\n \"inbounds\": [],\n \"outbounds\": []\n}", port);
|
||||
write_entire_file("config.json", minimal_json);
|
||||
}
|
||||
if url free(url);
|
||||
free(mode);
|
||||
state.url_saved = true;
|
||||
}
|
||||
}
|
||||
DestroyWindow(hwnd);
|
||||
return 0;
|
||||
} else if control_id == IDCANCEL {
|
||||
DestroyWindow(hwnd);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
case WM_CLOSE; {
|
||||
DestroyWindow(hwnd);
|
||||
return 0;
|
||||
}
|
||||
case WM_DESTROY; {
|
||||
state.dialog_done = true;
|
||||
// Wake up the dialog loop
|
||||
PostThreadMessageW(GetCurrentThreadId(), WM_NULL, 0, 0);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
return DefWindowProcW(hwnd, msg, wparam, lparam);
|
||||
}
|
||||
}
|
||||
|
||||
hInstance := GetModuleHandleW(null);
|
||||
class_name := utf8_to_wide("SingboxPortDialogClass");
|
||||
|
||||
wclass: WNDCLASSEXW;
|
||||
wclass.cbSize = size_of(WNDCLASSEXW);
|
||||
wclass.lpfnWndProc = port_dialog_proc;
|
||||
wclass.hInstance = hInstance;
|
||||
wclass.hCursor = LoadCursorW(null, IDC_ARROW);
|
||||
wclass.lpszClassName = class_name;
|
||||
|
||||
RegisterClassExW(*wclass);
|
||||
defer UnregisterClassW(class_name, hInstance);
|
||||
|
||||
screen_w := GetSystemMetrics(SM_CXSCREEN);
|
||||
screen_h := GetSystemMetrics(SM_CYSCREEN);
|
||||
dialog_w: s32 = 460;
|
||||
dialog_h: s32 = 170;
|
||||
dialog_x := (screen_w - dialog_w) / 2;
|
||||
dialog_y := (screen_h - dialog_h) / 2;
|
||||
|
||||
state: Dialog_State;
|
||||
|
||||
dialog_hwnd := CreateWindowExW(
|
||||
WS_EX_DLGMODALFRAME,
|
||||
class_name,
|
||||
utf8_to_wide("Configure Sing-box Port"),
|
||||
WS_POPUP | WS_CAPTION | WS_SYSMENU,
|
||||
dialog_x, dialog_y, dialog_w, dialog_h,
|
||||
parent_hwnd,
|
||||
null,
|
||||
hInstance,
|
||||
*state
|
||||
);
|
||||
|
||||
if !dialog_hwnd return false;
|
||||
|
||||
if parent_hwnd {
|
||||
EnableWindow(parent_hwnd, FALSE);
|
||||
}
|
||||
|
||||
ShowWindow(dialog_hwnd, SW_SHOW);
|
||||
UpdateWindow(dialog_hwnd);
|
||||
|
||||
while !state.dialog_done {
|
||||
msg: MSG;
|
||||
if GetMessageW(*msg, null, 0, 0) {
|
||||
if !IsDialogMessageW(dialog_hwnd, *msg) {
|
||||
TranslateMessage(*msg);
|
||||
DispatchMessageW(*msg);
|
||||
}
|
||||
} else {
|
||||
PostQuitMessage(cast(s32) msg.wParam);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if parent_hwnd {
|
||||
EnableWindow(parent_hwnd, TRUE);
|
||||
SetFocus(parent_hwnd);
|
||||
}
|
||||
|
||||
return state.url_saved;
|
||||
}
|
||||
|
||||
BIN
libcurl.dll
BIN
libcurl.dll
Binary file not shown.
126
main.jai
126
main.jai
@ -24,6 +24,7 @@ App_State :: struct {
|
||||
updater_thread: Thread;
|
||||
updater_data: Updater_Thread_Data;
|
||||
use_system_proxy: bool = true;
|
||||
port: int = 10801;
|
||||
}
|
||||
|
||||
// Custom log print sending logs to OutputDebugStringW
|
||||
@ -143,8 +144,26 @@ update_tray :: (app: *App_State) {
|
||||
start_singbox :: (app: *App_State) -> bool {
|
||||
if app.singbox_running return true;
|
||||
|
||||
if !file_exists("config.json") {
|
||||
if file_exists("url.txt") {
|
||||
has_config := file_exists("config.json");
|
||||
url_present := false;
|
||||
has_outbounds := false;
|
||||
|
||||
if has_config {
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
url := get_json_string_field(config_data, "\"_url\"");
|
||||
if url {
|
||||
url_present = true;
|
||||
}
|
||||
if find_index_from_left(config_data, "\"outbounds\"") != -1 && find_index_from_left(config_data, "\"route\"") != -1 {
|
||||
has_outbounds = true;
|
||||
}
|
||||
free(config_data);
|
||||
}
|
||||
}
|
||||
|
||||
if !has_config || !has_outbounds {
|
||||
if url_present {
|
||||
changed, success, err_msg := perform_update();
|
||||
if !success {
|
||||
msg := tprint("Could not download configuration.\nError: %", err_msg);
|
||||
@ -160,13 +179,18 @@ start_singbox :: (app: *App_State) -> bool {
|
||||
if file_exists("config.json") {
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
modified := modify_config_inbounds(config_data);
|
||||
if modified != config_data {
|
||||
write_entire_file("config.json", modified);
|
||||
log_print("Existing config.json sanitized to use mixed inbound.\n");
|
||||
}
|
||||
// Modify inbounds in memory with the custom port
|
||||
modified := modify_config_inbounds(config_data, app.port);
|
||||
|
||||
// Strip custom fields (_url, _mode, _port) to avoid sing-box decoding error
|
||||
clean_config := strip_json_metadata(modified);
|
||||
|
||||
write_entire_file("config_run.json", clean_config);
|
||||
log_print("Generated clean config_run.json for sing-box (port %).\n", app.port);
|
||||
|
||||
free(config_data);
|
||||
free(modified);
|
||||
free(clean_config);
|
||||
}
|
||||
}
|
||||
|
||||
@ -178,7 +202,7 @@ start_singbox :: (app: *App_State) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
cmd := tprint("% run -c config.json", exe_path);
|
||||
cmd := tprint("% run -c config_run.json", exe_path);
|
||||
job, pi, ok := create_process_hidden(cmd, "sing-box.log");
|
||||
if !ok {
|
||||
msg := tprint("Failed to start %. Please ensure sing-box.exe is in the same folder or in the 'sing-box' subfolder.", exe_path);
|
||||
@ -192,8 +216,8 @@ start_singbox :: (app: *App_State) -> bool {
|
||||
app.singbox_running = true;
|
||||
|
||||
if app.use_system_proxy {
|
||||
set_windows_system_proxy(true, "127.0.0.1:20122");
|
||||
log_print("System proxy enabled.\n");
|
||||
set_windows_system_proxy(true, tprint("127.0.0.1:%", app.port));
|
||||
log_print("System proxy enabled on port %.\n", app.port);
|
||||
}
|
||||
|
||||
update_tray(app);
|
||||
@ -217,6 +241,9 @@ stop_singbox :: (app: *App_State) {
|
||||
set_windows_system_proxy(false, "");
|
||||
log_print("System proxy disabled.\n");
|
||||
|
||||
// Clean up temporary run config
|
||||
DeleteFileW(utf8_to_wide("config_run.json"));
|
||||
|
||||
update_tray(app);
|
||||
log_print("Sing-box stopped.\n");
|
||||
}
|
||||
@ -242,6 +269,8 @@ check_process_status :: (app: *App_State) {
|
||||
set_windows_system_proxy(false, "");
|
||||
log_print("System proxy disabled due to unexpected exit.\n");
|
||||
|
||||
DeleteFileW(utf8_to_wide("config_run.json"));
|
||||
|
||||
update_tray(app);
|
||||
}
|
||||
}
|
||||
@ -284,6 +313,7 @@ show_context_menu :: (app: *App_State) {
|
||||
AppendMenuW(hMenu, MF_STRING, CMD_START_STOP, utf8_to_wide(toggle_str));
|
||||
|
||||
AppendMenuW(hMenu, MF_STRING, CMD_SET_URL, utf8_to_wide("Configure URL..."));
|
||||
AppendMenuW(hMenu, MF_STRING, CMD_SET_PORT, utf8_to_wide("Configure Port..."));
|
||||
AppendMenuW(hMenu, MF_STRING, CMD_UPDATE_NOW, utf8_to_wide("Update Config Now"));
|
||||
|
||||
AppendMenuW(hMenu, MF_SEPARATOR, 0, null);
|
||||
@ -325,28 +355,73 @@ show_context_menu :: (app: *App_State) {
|
||||
trigger_immediate_update(app);
|
||||
}
|
||||
}
|
||||
case CMD_SET_PORT; {
|
||||
changed := show_config_port_dialog(app.hwnd);
|
||||
if changed {
|
||||
log_print("Port configured, updating state...\n");
|
||||
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
port_str := get_json_val_field(config_data, "\"_port\"");
|
||||
if port_str {
|
||||
val, ok := to_integer(port_str);
|
||||
if ok {
|
||||
app.port = xx val;
|
||||
log_print("Port updated to %.\n", app.port);
|
||||
}
|
||||
free(port_str);
|
||||
}
|
||||
free(config_data);
|
||||
}
|
||||
|
||||
if app.singbox_running {
|
||||
stop_singbox(app);
|
||||
start_singbox(app);
|
||||
}
|
||||
}
|
||||
}
|
||||
case CMD_UPDATE_NOW; {
|
||||
trigger_immediate_update(app);
|
||||
}
|
||||
case CMD_MODE_PROXY; {
|
||||
if app.use_system_proxy {
|
||||
app.use_system_proxy = false;
|
||||
write_entire_file("mode.txt", "proxy");
|
||||
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
url := get_json_string_field(config_data, "\"_url\"");
|
||||
updated := set_json_metadata(config_data, url, "proxy", app.port);
|
||||
write_entire_file("config.json", updated);
|
||||
free(config_data);
|
||||
free(updated);
|
||||
}
|
||||
|
||||
log_print("Switched to Proxy Mode.\n");
|
||||
if app.singbox_running {
|
||||
set_windows_system_proxy(false, "");
|
||||
log_print("System proxy disabled.\n");
|
||||
stop_singbox(app);
|
||||
start_singbox(app);
|
||||
}
|
||||
}
|
||||
}
|
||||
case CMD_MODE_SYS_PROXY; {
|
||||
if !app.use_system_proxy {
|
||||
app.use_system_proxy = true;
|
||||
write_entire_file("mode.txt", "system_proxy");
|
||||
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
url := get_json_string_field(config_data, "\"_url\"");
|
||||
updated := set_json_metadata(config_data, url, "system_proxy", app.port);
|
||||
write_entire_file("config.json", updated);
|
||||
free(config_data);
|
||||
free(updated);
|
||||
}
|
||||
|
||||
log_print("Switched to System Proxy Mode.\n");
|
||||
if app.singbox_running {
|
||||
set_windows_system_proxy(true, "127.0.0.1:20122");
|
||||
log_print("System proxy enabled.\n");
|
||||
stop_singbox(app);
|
||||
start_singbox(app);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -434,14 +509,25 @@ main :: () {
|
||||
|
||||
app_state.hwnd = hwnd;
|
||||
|
||||
// Load persisted mode
|
||||
mode_data, mode_ok := read_entire_file("mode.txt");
|
||||
if mode_ok {
|
||||
mode_str := trim(mode_data);
|
||||
if mode_str == "proxy" {
|
||||
// Load persisted mode and port from config.json
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if read_ok {
|
||||
extracted_mode := get_json_string_field(config_data, "\"_mode\"");
|
||||
if extracted_mode && trim(extracted_mode) == "proxy" {
|
||||
app_state.use_system_proxy = false;
|
||||
}
|
||||
free(mode_data);
|
||||
|
||||
port_str := get_json_val_field(config_data, "\"_port\"");
|
||||
if port_str {
|
||||
val, ok := to_integer(port_str);
|
||||
if ok {
|
||||
app_state.port = xx val;
|
||||
log_print("Loaded port: %\n", app_state.port);
|
||||
}
|
||||
free(port_str);
|
||||
}
|
||||
|
||||
free(config_data);
|
||||
}
|
||||
|
||||
nid: NOTIFYICONDATAW;
|
||||
|
||||
867
sing-box.log
867
sing-box.log
@ -1,867 +0,0 @@
|
||||
[36mINFO[0m[0000] network: updated default interface Беспроводная сеть, index 16
|
||||
[36mINFO[0m[0000] inbound/mixed[0]: tcp server started at 127.0.0.1:20122
|
||||
[36mINFO[0m[0000] sing-box started (0.11s)
|
||||
[36mINFO[0m[0000] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/anytls[FI-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/hysteria2[FI-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/hysteria2[IS-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/anytls[IS-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0000] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0017] [[38;5;230m1431904216[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50931
|
||||
[36mINFO[0m[0017] [[38;5;71m2381729591[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50932
|
||||
[36mINFO[0m[0017] [[38;5;176m4260945056[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50934
|
||||
[36mINFO[0m[0017] [[38;5;156m3972403019[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50933
|
||||
[36mINFO[0m[0017] [[38;5;223m2043944415[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50935
|
||||
[36mINFO[0m[0017] [[38;5;103m3820594007[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50936
|
||||
[36mINFO[0m[0017] [[38;5;71m2381729591[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.91:443
|
||||
[36mINFO[0m[0017] [[38;5;186m25346093[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50937
|
||||
[36mINFO[0m[0017] [[38;5;201m1890729401[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50938
|
||||
[36mINFO[0m[0017] [[38;5;224m3241195230[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50939
|
||||
[36mINFO[0m[0017] [[38;5;230m3101946582[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50940
|
||||
[36mINFO[0m[0017] [[38;5;87m4160296336[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50941
|
||||
[36mINFO[0m[0017] [[38;5;50m2907378169[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50942
|
||||
[36mINFO[0m[0017] [[38;5;153m2101235790[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50943
|
||||
[36mINFO[0m[0017] [[38;5;220m3666367243[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50944
|
||||
[36mINFO[0m[0017] [[38;5;152m1701673352[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50945
|
||||
[36mINFO[0m[0017] [[38;5;69m2933851445[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50946
|
||||
[36mINFO[0m[0017] [[38;5;230m1431904216[0m 23ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;120m716605295[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50947
|
||||
[36mINFO[0m[0017] [[38;5;71m2381729591[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;159m3547324047[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50948
|
||||
[36mINFO[0m[0017] [[38;5;71m2381729591[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.91:443
|
||||
[36mINFO[0m[0017] [[38;5;44m4183698931[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50949
|
||||
[36mINFO[0m[0017] [[38;5;230m1431904216[0m 23ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;230m1431904216[0m 23ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;176m4260945056[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;176m4260945056[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;176m4260945056[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;87m4160296336[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;87m4160296336[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;87m4160296336[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;153m2101235790[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;153m2101235790[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;153m2101235790[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;186m25346093[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;230m3101946582[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;103m3820594007[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;220m3666367243[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;34m468356626[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50950
|
||||
[36mINFO[0m[0017] [[38;5;223m1650635272[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50951
|
||||
[36mINFO[0m[0017] [[38;5;152m1701673352[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;195m1228639268[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50952
|
||||
[36mINFO[0m[0017] [[38;5;83m879273539[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50953
|
||||
[36mINFO[0m[0017] [[38;5;229m3810273493[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50954
|
||||
[36mINFO[0m[0017] [[38;5;45m2326685940[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50955
|
||||
[36mINFO[0m[0017] [[38;5;186m25346093[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;186m25346093[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;230m3101946582[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;230m3101946582[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;111m1445639775[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50956
|
||||
[36mINFO[0m[0017] [[38;5;103m3820594007[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;103m3820594007[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;220m3666367243[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;220m3666367243[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;152m1701673352[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;152m1701673352[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;82m2644398402[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50957
|
||||
[36mINFO[0m[0017] [[38;5;156m3972403019[0m 10ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;156m3972403019[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;156m3972403019[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;50m2907378169[0m 10ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;50m2907378169[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;50m2907378169[0m 11ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;69m2933851445[0m 11ms] inbound/mixed[0]: inbound connection to 149.154.167.91:80
|
||||
[36mINFO[0m[0017] [[38;5;180m4159241892[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50958
|
||||
[36mINFO[0m[0017] [[38;5;222m3822563278[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50959
|
||||
[36mINFO[0m[0017] [[38;5;69m2933851445[0m 11ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;69m2933851445[0m 11ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.91:80
|
||||
[36mINFO[0m[0017] [[38;5;228m2138999764[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50960
|
||||
[36mINFO[0m[0017] [[38;5;36m3711022827[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50961
|
||||
[36mINFO[0m[0017] [[38;5;42m964833050[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50962
|
||||
[36mINFO[0m[0017] [[38;5;42m2917485338[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50963
|
||||
[36mINFO[0m[0017] [[38;5;214m3810754502[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50964
|
||||
[36mINFO[0m[0017] [[38;5;120m716605295[0m 13ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;120m716605295[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;120m716605295[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;224m3241195230[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;41m736709104[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50965
|
||||
[36mINFO[0m[0017] [[38;5;201m1890729401[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;224m3241195230[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;224m3241195230[0m 16ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;201m1890729401[0m 16ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;201m1890729401[0m 16ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;159m3547324047[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;223m2043944415[0m 17ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;159m3547324047[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;159m3547324047[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;223m2043944415[0m 18ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;223m2043944415[0m 18ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0017] [[38;5;44m4183698931[0m 16ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;44m4183698931[0m 17ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;44m4183698931[0m 17ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0017] [[38;5;223m1650635272[0m 13ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;223m1650635272[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;223m1650635272[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;45m2326685940[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;34m468356626[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;229m3810273493[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;83m879273539[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;111m1445639775[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;195m1228639268[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;45m2326685940[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;45m2326685940[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;229m3810273493[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;229m3810273493[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;180m4159241892[0m 10ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;82m2644398402[0m 13ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;222m3822563278[0m 10ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;34m468356626[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;34m468356626[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;111m1445639775[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;83m879273539[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;228m2138999764[0m 9ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;111m1445639775[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;83m879273539[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;195m1228639268[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;195m1228639268[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;42m964833050[0m 9ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;42m2917485338[0m 9ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;222m3822563278[0m 11ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;222m3822563278[0m 12ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;214m3810754502[0m 9ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;82m2644398402[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;82m2644398402[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;228m2138999764[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;36m3711022827[0m 10ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;228m2138999764[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;180m4159241892[0m 12ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;42m964833050[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;41m736709104[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;180m4159241892[0m 12ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;42m2917485338[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;42m964833050[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;42m2917485338[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0017] [[38;5;214m3810754502[0m 9ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;214m3810754502[0m 9ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;36m3711022827[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;36m3711022827[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0017] [[38;5;41m736709104[0m 9ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0017] [[38;5;41m736709104[0m 9ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0028] [[38;5;108m1832812636[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50980
|
||||
[36mINFO[0m[0028] [[38;5;108m1832812636[0m 1ms] inbound/mixed[0]: inbound connection to antigravity-unleash.goog:443
|
||||
[36mINFO[0m[0028] [[38;5;108m1832812636[0m 2ms] router: found process path: C:\Users\Ixniy\AppData\Local\agy\bin\agy.exe
|
||||
[36mINFO[0m[0028] [[38;5;108m1832812636[0m 2ms] outbound/hysteria2[FI-H]: outbound connection to antigravity-unleash.goog:443
|
||||
[36mINFO[0m[0028] [[38;5;202m1541486522[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50983
|
||||
[36mINFO[0m[0028] [[38;5;202m1541486522[0m 0ms] inbound/mixed[0]: inbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0028] [[38;5;202m1541486522[0m 1ms] router: found process path: C:\Users\Ixniy\AppData\Local\agy\bin\agy.exe
|
||||
[36mINFO[0m[0028] [[38;5;202m1541486522[0m 1ms] outbound/hysteria2[FI-H]: outbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0029] [[38;5;84m1858473875[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:50984
|
||||
[36mINFO[0m[0029] [[38;5;84m1858473875[0m 0ms] inbound/mixed[0]: inbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0029] [[38;5;84m1858473875[0m 0ms] router: found process path: C:\Users\Ixniy\AppData\Local\agy\bin\agy.exe
|
||||
[36mINFO[0m[0029] [[38;5;84m1858473875[0m 0ms] outbound/hysteria2[FI-H]: outbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0062] [[38;5;223m1317510623[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:61567
|
||||
[36mINFO[0m[0062] [[38;5;223m1317510623[0m 0ms] inbound/mixed[0]: inbound connection to sessionserver.mojang.com:443
|
||||
[36mINFO[0m[0062] [[38;5;223m1317510623[0m 0ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0062] [[38;5;223m1317510623[0m 0ms] outbound/hysteria2[FI-H]: outbound connection to sessionserver.mojang.com:443
|
||||
[36mINFO[0m[0077] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/hysteria2[IS-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/anytls[IS-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/anytls[FI-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/hysteria2[FI-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0077] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0103] [[38;5;184m1465044136[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57263
|
||||
[36mINFO[0m[0103] [[38;5;184m1465044136[0m 0ms] inbound/mixed[0]: inbound connection to api.modrinth.com:443
|
||||
[36mINFO[0m[0103] [[38;5;184m1465044136[0m 0ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0103] [[38;5;184m1465044136[0m 0ms] outbound/hysteria2[FI-H]: outbound connection to api.modrinth.com:443
|
||||
[36mINFO[0m[0109] [[38;5;45m1964558877[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57267
|
||||
[36mINFO[0m[0109] [[38;5;49m3489704696[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57268
|
||||
[36mINFO[0m[0109] [[38;5;37m3084507372[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57269
|
||||
[36mINFO[0m[0109] [[38;5;110m1748241758[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57270
|
||||
[36mINFO[0m[0109] [[38;5;157m4242387018[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57271
|
||||
[36mINFO[0m[0109] [[38;5;32m715087632[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57272
|
||||
[36mINFO[0m[0109] [[38;5;49m3489704696[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;49m3489704696[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;49m3489704696[0m 3ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;110m1748241758[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;45m1964558877[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;157m4242387018[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;45m1964558877[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;45m1964558877[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;110m1748241758[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;110m1748241758[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;69m2876949557[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57273
|
||||
[36mINFO[0m[0109] [[38;5;157m4242387018[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;157m4242387018[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;45m4070975005[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57274
|
||||
[36mINFO[0m[0109] [[38;5;32m715087632[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;32m715087632[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;32m715087632[0m 3ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;37m3084507372[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;95m1390305871[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57275
|
||||
[36mINFO[0m[0109] [[38;5;137m3517727097[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57276
|
||||
[36mINFO[0m[0109] [[38;5;178m1945303714[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57277
|
||||
[36mINFO[0m[0109] [[38;5;101m1928229461[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57278
|
||||
[36mINFO[0m[0109] [[38;5;71m2746075703[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57279
|
||||
[36mINFO[0m[0109] [[38;5;37m3084507372[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;37m3084507372[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;112m1297021536[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57280
|
||||
[36mINFO[0m[0109] [[38;5;114m1255360610[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57281
|
||||
[36mINFO[0m[0109] [[38;5;99m610130003[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57282
|
||||
[36mINFO[0m[0109] [[38;5;36m1717302292[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57283
|
||||
[36mINFO[0m[0109] [[38;5;133m1571474293[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57284
|
||||
[36mINFO[0m[0109] [[38;5;69m2876949557[0m 2ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;222m3333753609[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57285
|
||||
[36mINFO[0m[0109] [[38;5;198m2184765366[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57286
|
||||
[36mINFO[0m[0109] [[38;5;45m4070975005[0m 1ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;95m1390305871[0m 1ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;69m2876949557[0m 2ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;69m2876949557[0m 2ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;95m1390305871[0m 1ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;95m1390305871[0m 1ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;45m4070975005[0m 2ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;45m4070975005[0m 2ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;112m1297021536[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;112m1297021536[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;112m1297021536[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;178m1945303714[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;114m1255360610[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;137m3517727097[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;99m610130003[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;133m1571474293[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;137m3517727097[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;178m1945303714[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;36m1717302292[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;178m1945303714[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;114m1255360610[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;137m3517727097[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;99m610130003[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;114m1255360610[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;101m1928229461[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;212m3957594564[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57287
|
||||
[36mINFO[0m[0109] [[38;5;133m1571474293[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;133m1571474293[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;99m610130003[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;198m2184765366[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;192m644915632[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57288
|
||||
[36mINFO[0m[0109] [[38;5;229m3986450649[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57289
|
||||
[36mINFO[0m[0109] [[38;5;222m3333753609[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;215m1147476423[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57290
|
||||
[36mINFO[0m[0109] [[38;5;36m1717302292[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;51m3189919482[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57291
|
||||
[36mINFO[0m[0109] [[38;5;36m1717302292[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;101m1928229461[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;71m2746075703[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;101m1928229461[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;119m3327355495[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57292
|
||||
[36mINFO[0m[0109] [[38;5;227m1493734107[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57293
|
||||
[36mINFO[0m[0109] [[38;5;198m2184765366[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;198m2184765366[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;190m3272003369[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:57294
|
||||
[36mINFO[0m[0109] [[38;5;222m3333753609[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;222m3333753609[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0109] [[38;5;71m2746075703[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;71m2746075703[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0109] [[38;5;229m3986450649[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;212m3957594564[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;192m644915632[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;215m1147476423[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;51m3189919482[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;229m3986450649[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;229m3986450649[0m 3ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;212m3957594564[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;212m3957594564[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;119m3327355495[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;227m1493734107[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;190m3272003369[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;215m1147476423[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;192m644915632[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;215m1147476423[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;51m3189919482[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;51m3189919482[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;192m644915632[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;119m3327355495[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;119m3327355495[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0109] [[38;5;227m1493734107[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;227m1493734107[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0109] [[38;5;190m3272003369[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0109] [[38;5;190m3272003369[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0137] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0137] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[31mERROR[0m[0152] [[38;5;223m1317510623[0m 1m30s] connection: connection upload closed: stream 160 canceled by remote with error code 0
|
||||
[36mINFO[0m[0197] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/hysteria2[FI-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/anytls[FI-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/hysteria2[IS-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/anytls[IS-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0197] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0201] [[38;5;134m4235179894[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59541
|
||||
[36mINFO[0m[0201] [[38;5;108m717510492[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59542
|
||||
[36mINFO[0m[0201] [[38;5;37m658118124[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59543
|
||||
[36mINFO[0m[0201] [[38;5;156m1230053707[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59544
|
||||
[36mINFO[0m[0201] [[38;5;180m1311557284[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59545
|
||||
[36mINFO[0m[0201] [[38;5;76m3836323132[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59546
|
||||
[36mINFO[0m[0201] [[38;5;192m899358462[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59547
|
||||
[36mINFO[0m[0201] [[38;5;193m1874550310[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59549
|
||||
[36mINFO[0m[0201] [[38;5;159m3959861576[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59548
|
||||
[36mINFO[0m[0201] [[38;5;171m1285577883[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59550
|
||||
[36mINFO[0m[0201] [[38;5;190m4274389678[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59551
|
||||
[36mINFO[0m[0201] [[38;5;192m3583255550[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59552
|
||||
[36mINFO[0m[0201] [[38;5;168m171399832[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59553
|
||||
[36mINFO[0m[0201] [[38;5;180m856256676[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59554
|
||||
[36mINFO[0m[0201] [[38;5;159m3959861576[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;159m3959861576[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;159m3959861576[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;156m1230053707[0m 20ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;76m3836323132[0m 20ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;119m3252821095[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59555
|
||||
[36mINFO[0m[0201] [[38;5;171m1285577883[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;225m1532768989[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59556
|
||||
[36mINFO[0m[0201] [[38;5;134m76674422[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59557
|
||||
[36mINFO[0m[0201] [[38;5;134m4235179894[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;206m162691262[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59558
|
||||
[36mINFO[0m[0201] [[38;5;192m899358462[0m 20ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;190m640806574[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59559
|
||||
[36mINFO[0m[0201] [[38;5;152m1026466952[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59560
|
||||
[36mINFO[0m[0201] [[38;5;76m3836323132[0m 20ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;190m4274389678[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;76m3836323132[0m 21ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;171m1285577883[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;156m1230053707[0m 21ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;171m1285577883[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;193m1874550310[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;156m1230053707[0m 21ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;180m1311557284[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;134m4235179894[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;134m4235179894[0m 22ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;65m3211001393[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59561
|
||||
[36mINFO[0m[0201] [[38;5;192m899358462[0m 21ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;192m899358462[0m 21ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;87m3166760080[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59562
|
||||
[36mINFO[0m[0201] [[38;5;192m3583255550[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;190m4274389678[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;190m4274389678[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;193m1874550310[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;180m856256676[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;193m1874550310[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;71m2721821495[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59563
|
||||
[36mINFO[0m[0201] [[38;5;180m1311557284[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;180m1311557284[0m 22ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;192m3583255550[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;117m3155480677[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59564
|
||||
[36mINFO[0m[0201] [[38;5;192m3583255550[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;108m717510492[0m 23ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;101m2590703701[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59565
|
||||
[36mINFO[0m[0201] [[38;5;180m856256676[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;180m856256676[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;99m3573597523[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59566
|
||||
[36mINFO[0m[0201] [[38;5;168m171399832[0m 9ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;108m717510492[0m 24ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;108m717510492[0m 24ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;37m658118124[0m 24ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;168m171399832[0m 10ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;95m876025679[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59567
|
||||
[36mINFO[0m[0201] [[38;5;168m171399832[0m 10ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0201] [[38;5;121m1114293102[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:59568
|
||||
[36mINFO[0m[0201] [[38;5;37m658118124[0m 25ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;37m658118124[0m 25ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0201] [[38;5;225m1532768989[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;225m1532768989[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;225m1532768989[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;119m3252821095[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;119m3252821095[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;119m3252821095[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;190m640806574[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;134m76674422[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;206m162691262[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;134m76674422[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;134m76674422[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;190m640806574[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;190m640806574[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;152m1026466952[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;206m162691262[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;206m162691262[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;65m3211001393[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;152m1026466952[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;152m1026466952[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;87m3166760080[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;65m3211001393[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;65m3211001393[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;71m2721821495[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;87m3166760080[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;87m3166760080[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;117m3155480677[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;101m2590703701[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;99m3573597523[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;95m876025679[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;71m2721821495[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;71m2721821495[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;121m1114293102[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;117m3155480677[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;101m2590703701[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;99m3573597523[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;117m3155480677[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0201] [[38;5;101m2590703701[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;95m876025679[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;99m3573597523[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;95m876025679[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0201] [[38;5;121m1114293102[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0201] [[38;5;121m1114293102[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0240] [[38;5;32m2090199824[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:62702
|
||||
[36mINFO[0m[0240] [[38;5;32m2090199824[0m 0ms] inbound/mixed[0]: inbound connection to api.modrinth.com:443
|
||||
[36mINFO[0m[0240] [[38;5;32m2090199824[0m 0ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0240] [[38;5;32m2090199824[0m 0ms] outbound/hysteria2[FI-H]: outbound connection to api.modrinth.com:443
|
||||
[36mINFO[0m[0244] [[38;5;220m2547779554[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53936
|
||||
[36mINFO[0m[0244] [[38;5;220m2547779554[0m 11ms] inbound/mixed[0]: inbound connection to 149.154.162.123:443
|
||||
[36mINFO[0m[0244] [[38;5;220m2547779554[0m 12ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0244] [[38;5;220m2547779554[0m 12ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.162.123:443
|
||||
[36mINFO[0m[0245] [[38;5;193m1434153766[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53937
|
||||
[36mINFO[0m[0245] [[38;5;193m1434153766[0m 12ms] inbound/mixed[0]: inbound connection to 149.154.162.123:80
|
||||
[36mINFO[0m[0245] [[38;5;193m1434153766[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0245] [[38;5;193m1434153766[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.162.123:80
|
||||
[36mINFO[0m[0257] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0257] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[31mERROR[0m[0269] [[38;5;84m1858473875[0m 4m0s] connection: connection upload closed: stream 156 canceled by remote with error code 0
|
||||
[36mINFO[0m[0293] [[38;5;102m2603951190[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53987
|
||||
[36mINFO[0m[0293] [[38;5;155m1825649035[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53988
|
||||
[36mINFO[0m[0293] [[38;5;165m31643797[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53989
|
||||
[36mINFO[0m[0293] [[38;5;102m531155798[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53990
|
||||
[36mINFO[0m[0293] [[38;5;76m490479164[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53991
|
||||
[36mINFO[0m[0293] [[38;5;111m1949955935[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53992
|
||||
[36mINFO[0m[0293] [[38;5;210m2194031042[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53993
|
||||
[36mINFO[0m[0293] [[38;5;192m1852327934[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53994
|
||||
[36mINFO[0m[0293] [[38;5;228m3367105236[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53995
|
||||
[36mINFO[0m[0293] [[38;5;226m2108528092[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53996
|
||||
[36mINFO[0m[0293] [[38;5;226m2459812306[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53997
|
||||
[36mINFO[0m[0293] [[38;5;158m2048289865[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53998
|
||||
[36mINFO[0m[0293] [[38;5;206m3909865150[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53999
|
||||
[36mINFO[0m[0293] [[38;5;66m518794290[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54000
|
||||
[36mINFO[0m[0293] [[38;5;111m1949955935[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;111m1949955935[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;111m1949955935[0m 14ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;102m2603951190[0m 16ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;165m31643797[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;210m2194031042[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;165m31643797[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;165m31643797[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;102m2603951190[0m 16ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;102m2603951190[0m 16ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;210m2194031042[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;210m2194031042[0m 15ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;155m1825649035[0m 17ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;155m1825649035[0m 17ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;155m1825649035[0m 17ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;76m490479164[0m 17ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;169m1413355417[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54001
|
||||
[36mINFO[0m[0293] [[38;5;186m709448493[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54002
|
||||
[36mINFO[0m[0293] [[38;5;98m1970450258[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54003
|
||||
[36mINFO[0m[0293] [[38;5;173m1927008157[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54004
|
||||
[36mINFO[0m[0293] [[38;5;152m4095373192[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54005
|
||||
[36mINFO[0m[0293] [[38;5;76m490479164[0m 17ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;98m2917623634[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54006
|
||||
[36mINFO[0m[0293] [[38;5;76m490479164[0m 17ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;158m2048289865[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;158m2048289865[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;158m2048289865[0m 7ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;102m531155798[0m 18ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;226m2459812306[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;175m859660703[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54007
|
||||
[36mINFO[0m[0293] [[38;5;192m1852327934[0m 17ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;122m1692439917[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54008
|
||||
[36mINFO[0m[0293] [[38;5;37m872490476[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54009
|
||||
[36mINFO[0m[0293] [[38;5;226m2459812306[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;226m2459812306[0m 8ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;206m3909865150[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;143m3738708351[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54010
|
||||
[36mINFO[0m[0293] [[38;5;102m531155798[0m 19ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;102m531155798[0m 19ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;123m3626539883[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54011
|
||||
[36mINFO[0m[0293] [[38;5;192m1852327934[0m 18ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;192m1852327934[0m 18ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;195m1727276467[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54012
|
||||
[36mINFO[0m[0293] [[38;5;66m518794290[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;228m3367105236[0m 18ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;78m2313125694[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54013
|
||||
[36mINFO[0m[0293] [[38;5;226m2108528092[0m 17ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;206m3909865150[0m 9ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;206m3909865150[0m 9ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;228m3367105236[0m 18ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;228m3367105236[0m 18ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;66m518794290[0m 9ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;66m518794290[0m 9ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0293] [[38;5;76m753379900[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:54014
|
||||
[36mINFO[0m[0293] [[38;5;226m2108528092[0m 18ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;226m2108528092[0m 18ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0293] [[38;5;169m1413355417[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;173m1927008157[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;98m1970450258[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;169m1413355417[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;169m1413355417[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;173m1927008157[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;173m1927008157[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;186m709448493[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;98m1970450258[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;98m1970450258[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;152m4095373192[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;98m2917623634[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;186m709448493[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;186m709448493[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;152m4095373192[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;152m4095373192[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;98m2917623634[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;98m2917623634[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;122m1692439917[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;122m1692439917[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;122m1692439917[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;37m872490476[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;143m3738708351[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;175m859660703[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;123m3626539883[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;175m859660703[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;195m1727276467[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;78m2313125694[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;143m3738708351[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;123m3626539883[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;123m3626539883[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;37m872490476[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;76m753379900[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;143m3738708351[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;175m859660703[0m 6ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;37m872490476[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;78m2313125694[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;78m2313125694[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0293] [[38;5;195m1727276467[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;195m1727276467[0m 5ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0293] [[38;5;76m753379900[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0293] [[38;5;76m753379900[0m 4ms] outbound/hysteria2[FI-H]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0317] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/anytls[FI-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/anytls[IS-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/hysteria2[FI-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0317] outbound/hysteria2[IS-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0362] [[38;5;32m1966275856[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58579
|
||||
[36mINFO[0m[0362] [[38;5;32m1966275856[0m 0ms] inbound/mixed[0]: inbound connection to sessionserver.mojang.com:443
|
||||
[36mINFO[0m[0362] [[38;5;32m1966275856[0m 1ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0362] [[38;5;32m1966275856[0m 1ms] outbound/anytls[FI-A]: outbound connection to sessionserver.mojang.com:443
|
||||
[36mINFO[0m[0377] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0377] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0380] [[38;5;152m2832783496[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58608
|
||||
[36mINFO[0m[0380] [[38;5;226m4049230546[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58607
|
||||
[36mINFO[0m[0380] [[38;5;157m53552781[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58609
|
||||
[36mINFO[0m[0380] [[38;5;226m4049230546[0m 12ms] inbound/mixed[0]: inbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;226m4049230546[0m 13ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;226m4049230546[0m 13ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;157m53552781[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;152m2832783496[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;229m3565101570[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58610
|
||||
[36mINFO[0m[0380] [[38;5;227m2253209051[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58612
|
||||
[36mINFO[0m[0380] [[38;5;45m892718580[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58613
|
||||
[36mINFO[0m[0380] [[38;5;152m2832783496[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;157m53552781[0m 14ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;152m2832783496[0m 14ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;157m53552781[0m 14ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:443
|
||||
[36mINFO[0m[0380] [[38;5;227m2253209051[0m 1ms] inbound/mixed[0]: inbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0380] [[38;5;229m3565101570[0m 1ms] inbound/mixed[0]: inbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0380] [[38;5;227m2253209051[0m 1ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;227m2253209051[0m 1ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0380] [[38;5;229m3565101570[0m 1ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;229m3565101570[0m 1ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0380] [[38;5;45m892718580[0m 1ms] inbound/mixed[0]: inbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0380] [[38;5;45m892718580[0m 1ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0380] [[38;5;45m892718580[0m 1ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.255:80
|
||||
[36mINFO[0m[0385] [[38;5;138m195032954[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58625
|
||||
[36mINFO[0m[0385] [[38;5;220m4099219148[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58626
|
||||
[36mINFO[0m[0385] [[38;5;76m3720375868[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58627
|
||||
[36mINFO[0m[0385] [[38;5;193m4157402033[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58628
|
||||
[36mINFO[0m[0385] [[38;5;228m811633626[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58629
|
||||
[36mINFO[0m[0385] [[38;5;41m1457204720[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58630
|
||||
[36mINFO[0m[0385] [[38;5;87m3310489488[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58631
|
||||
[36mINFO[0m[0385] [[38;5;204m1292574652[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58632
|
||||
[36mINFO[0m[0385] [[38;5;49m3820360481[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58633
|
||||
[36mINFO[0m[0385] [[38;5;40m3424951791[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58634
|
||||
[36mINFO[0m[0385] [[38;5;226m3851692764[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58635
|
||||
[36mINFO[0m[0385] [[38;5;185m3704328105[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58636
|
||||
[36mINFO[0m[0385] [[38;5;105m2062770777[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58637
|
||||
[36mINFO[0m[0385] [[38;5;41m4013259248[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58638
|
||||
[36mINFO[0m[0385] [[38;5;138m195032954[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;138m195032954[0m 16ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;138m195032954[0m 16ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;193m4157402033[0m 14ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;76m3720375868[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;226m3851692764[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;40m3424951791[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;220m4099219148[0m 15ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;204m1292574652[0m 11ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;193m4157402033[0m 15ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;193m4157402033[0m 15ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;76m3720375868[0m 16ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;76m3720375868[0m 16ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;226m3851692764[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;226m3851692764[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;40m3424951791[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;40m3424951791[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;220m4099219148[0m 16ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;220m4099219148[0m 16ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;49m3820360481[0m 11ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;204m1292574652[0m 12ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;204m1292574652[0m 12ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;49m3820360481[0m 12ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;49m3820360481[0m 12ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;208m3918984384[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58643
|
||||
[36mINFO[0m[0385] [[38;5;131m2801507699[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58645
|
||||
[36mINFO[0m[0385] [[38;5;29m2886623716[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58646
|
||||
[36mINFO[0m[0385] [[38;5;231m1617752791[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58648
|
||||
[36mINFO[0m[0385] [[38;5;226m3381128156[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58647
|
||||
[36mINFO[0m[0385] [[38;5;87m3310489488[0m 18ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;195m3263818931[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58649
|
||||
[36mINFO[0m[0385] [[38;5;185m3704328105[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;28m468996323[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58650
|
||||
[36mINFO[0m[0385] [[38;5;99m736373075[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58651
|
||||
[36mINFO[0m[0385] [[38;5;105m2062770777[0m 7ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;87m3310489488[0m 18ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;87m3310489488[0m 18ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;41m1457204720[0m 18ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;185m3704328105[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;185m3704328105[0m 8ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;228m811633626[0m 19ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;105m2062770777[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;105m2062770777[0m 8ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;41m4013259248[0m 8ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;41m1457204720[0m 19ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;41m1457204720[0m 19ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;85m2499956037[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58655
|
||||
[36mINFO[0m[0385] [[38;5;222m2169764617[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58656
|
||||
[36mINFO[0m[0385] [[38;5;228m811633626[0m 19ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;228m811633626[0m 19ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0385] [[38;5;49m2698791457[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58658
|
||||
[36mINFO[0m[0385] [[38;5;41m4013259248[0m 8ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;41m4013259248[0m 8ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0385] [[38;5;67m3809220915[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58659
|
||||
[36mINFO[0m[0385] [[38;5;95m659473231[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58661
|
||||
[36mINFO[0m[0385] [[38;5;105m1707503449[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58663
|
||||
[36mINFO[0m[0385] [[38;5;208m3918984384[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;208m3918984384[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;208m3918984384[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;231m1617752791[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;195m3263818931[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;29m2886623716[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;131m2801507699[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;226m3381128156[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;231m1617752791[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;231m1617752791[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;131m2801507699[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;131m2801507699[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;85m2499956037[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;195m3263818931[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;28m468996323[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;99m736373075[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;195m3263818931[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;226m3381128156[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;29m2886623716[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;226m3381128156[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;29m2886623716[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;105m1707503449[0m 2ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;95m659473231[0m 2ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;49m2698791457[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;222m2169764617[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;67m3809220915[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;85m2499956037[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;85m2499956037[0m 3ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;28m468996323[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;28m468996323[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;99m736373075[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;99m736373075[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;105m1707503449[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;105m1707503449[0m 3ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;95m659473231[0m 3ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;95m659473231[0m 3ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;49m2698791457[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;67m3809220915[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;49m2698791457[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0385] [[38;5;67m3809220915[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0385] [[38;5;222m2169764617[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0385] [[38;5;222m2169764617[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[31mERROR[0m[0385] [[38;5;220m4099219148[0m 435ms] connection: connection upload closed: raw-read tcp 127.0.0.1:20122->127.0.0.1:58626: An existing connection was forcibly closed by the remote host.
|
||||
[36mINFO[0m[0389] [[38;5;119m3703065968[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:58680
|
||||
[36mINFO[0m[0389] [[38;5;119m3703065968[0m 0ms] inbound/mixed[0]: inbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0389] [[38;5;119m3703065968[0m 1ms] router: found process path: C:\Users\Ixniy\AppData\Local\agy\bin\agy.exe
|
||||
[36mINFO[0m[0389] [[38;5;119m3703065968[0m 1ms] outbound/anytls[FI-A]: outbound connection to daily-cloudcode-pa.googleapis.com:443
|
||||
[36mINFO[0m[0431] [[38;5;67m2250089523[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:60041
|
||||
[36mINFO[0m[0431] [[38;5;67m2250089523[0m 0ms] inbound/mixed[0]: inbound connection to api.minecraftservices.com:443
|
||||
[36mINFO[0m[0431] [[38;5;67m2250089523[0m 1ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0431] [[38;5;67m2250089523[0m 1ms] outbound/anytls[FI-A]: outbound connection to api.minecraftservices.com:443
|
||||
[36mINFO[0m[0431] [[38;5;221m186976993[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:60042
|
||||
[36mINFO[0m[0431] [[38;5;221m186976993[0m 0ms] inbound/mixed[0]: inbound connection to api.minecraftservices.com:443
|
||||
[36mINFO[0m[0431] [[38;5;221m186976993[0m 1ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0431] [[38;5;221m186976993[0m 1ms] outbound/anytls[FI-A]: outbound connection to api.minecraftservices.com:443
|
||||
[36mINFO[0m[0431] [[38;5;230m2984533206[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:60044
|
||||
[36mINFO[0m[0431] [[38;5;230m2984533206[0m 0ms] inbound/mixed[0]: inbound connection to textures.minecraft.net:80
|
||||
[36mINFO[0m[0431] [[38;5;230m2984533206[0m 1ms] router: found process path: D:\Games\Modrinth App\Modrinth App.exe
|
||||
[36mINFO[0m[0431] [[38;5;230m2984533206[0m 1ms] outbound/anytls[FI-A]: outbound connection to textures.minecraft.net:80
|
||||
[36mINFO[0m[0437] outbound/vless[FI-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/vless[NL-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/anytls[FI-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/hysteria2[CZ-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/anytls[NL-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/hysteria2[IS-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/hysteria2[NL-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/vless[IS-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/hysteria2[FI-H]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/anytls[IS-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/vless[CZ-V]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0437] outbound/anytls[CZ-A]: outbound connection to cp.cloudflare.com:443
|
||||
[36mINFO[0m[0477] [[38;5;43m2845713650[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53678
|
||||
[36mINFO[0m[0477] [[38;5;183m880389287[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53679
|
||||
[36mINFO[0m[0477] [[38;5;132m912900468[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53680
|
||||
[36mINFO[0m[0477] [[38;5;157m2891250573[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53681
|
||||
[36mINFO[0m[0477] [[38;5;45m3312914973[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53682
|
||||
[36mINFO[0m[0477] [[38;5;34m1992578322[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53683
|
||||
[36mINFO[0m[0477] [[38;5;135m546359159[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53684
|
||||
[36mINFO[0m[0477] [[38;5;45m438232820[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53685
|
||||
[36mINFO[0m[0477] [[38;5;210m46188226[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53686
|
||||
[36mINFO[0m[0477] [[38;5;195m4231732772[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53687
|
||||
[36mINFO[0m[0477] [[38;5;167m3968586135[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53688
|
||||
[36mINFO[0m[0477] [[38;5;120m576283496[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53689
|
||||
[36mINFO[0m[0477] [[38;5;230m3017438936[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53690
|
||||
[36mINFO[0m[0477] [[38;5;85m4130392210[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53691
|
||||
[36mINFO[0m[0477] [[38;5;167m3968586135[0m 20ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;167m3968586135[0m 20ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;167m3968586135[0m 20ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;135m546359159[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;183m880389287[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;132m912900468[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;131m3830951283[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53692
|
||||
[36mINFO[0m[0477] [[38;5;120m576283496[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;34m1992578322[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;210m46188226[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;157m2891250573[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;51m3718907642[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53693
|
||||
[36mINFO[0m[0477] [[38;5;195m4231732772[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;43m2845713650[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;45m3312914973[0m 36ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;223m287507464[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53694
|
||||
[36mINFO[0m[0477] [[38;5;45m438232820[0m 22ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;135m546359159[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;135m546359159[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;132m912900468[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;230m3017438936[0m 21ms] inbound/mixed[0]: inbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;85m4130392210[0m 6ms] inbound/mixed[0]: inbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;183m880389287[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;132m912900468[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;183m880389287[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;34m1992578322[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;34m1992578322[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;157m2891250573[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;120m576283496[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;157m2891250573[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;120m576283496[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;210m46188226[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;210m46188226[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;195m4231732772[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;195m4231732772[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;43m2845713650[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;45m3312914973[0m 37ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;43m2845713650[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;45m438232820[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;45m3312914973[0m 37ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;45m438232820[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;230m3017438936[0m 22ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;230m3017438936[0m 22ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:443
|
||||
[36mINFO[0m[0477] [[38;5;85m4130392210[0m 7ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;85m4130392210[0m 7ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:443
|
||||
[36mINFO[0m[0477] [[38;5;184m2106682024[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53695
|
||||
[36mINFO[0m[0477] [[38;5;136m1519394680[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53696
|
||||
[36mINFO[0m[0477] [[38;5;217m3134230985[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53699
|
||||
[36mINFO[0m[0477] [[38;5;159m2572715919[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53700
|
||||
[36mINFO[0m[0477] [[38;5;101m2368929877[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53701
|
||||
[36mINFO[0m[0477] [[38;5;40m1262976495[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53702
|
||||
[36mINFO[0m[0477] [[38;5;190m385268265[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53703
|
||||
[36mINFO[0m[0477] [[38;5;28m1695365347[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53704
|
||||
[36mINFO[0m[0477] [[38;5;220m2430121676[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53705
|
||||
[36mINFO[0m[0477] [[38;5;117m3387758181[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53706
|
||||
[36mINFO[0m[0477] [[38;5;62m3648335918[0m 0ms] inbound/mixed[0]: inbound connection from 127.0.0.1:53707
|
||||
[36mINFO[0m[0477] [[38;5;131m3830951283[0m 3ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;131m3830951283[0m 4ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;131m3830951283[0m 4ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;51m3718907642[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;51m3718907642[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;51m3718907642[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;223m287507464[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;223m287507464[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;223m287507464[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;184m2106682024[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;217m3134230985[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;136m1519394680[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;101m2368929877[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;159m2572715919[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;184m2106682024[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;184m2106682024[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;40m1262976495[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;28m1695365347[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;217m3134230985[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;136m1519394680[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;136m1519394680[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;190m385268265[0m 4ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;217m3134230985[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;220m2430121676[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;117m3387758181[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;62m3648335918[0m 5ms] inbound/mixed[0]: inbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;159m2572715919[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;101m2368929877[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;159m2572715919[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;101m2368929877[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;40m1262976495[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;40m1262976495[0m 6ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;28m1695365347[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;28m1695365347[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;190m385268265[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;190m385268265[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;220m2430121676[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;220m2430121676[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[36mINFO[0m[0477] [[38;5;117m3387758181[0m 5ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;117m3387758181[0m 5ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.41:80
|
||||
[36mINFO[0m[0477] [[38;5;62m3648335918[0m 6ms] router: found process path: C:\Program Files\Telegram Desktop\Telegram.exe
|
||||
[36mINFO[0m[0477] [[38;5;62m3648335918[0m 6ms] outbound/anytls[FI-A]: outbound connection to 149.154.167.51:80
|
||||
[31mERROR[0m[0477] [[38;5;136m1519394680[0m 214ms] connection: connection upload closed: raw-read tcp 127.0.0.1:20122->127.0.0.1:53696: An established connection was aborted by the software in your host machine.
|
||||
@ -1,17 +0,0 @@
|
||||
Copyright (C) 2022 by nekohasekai <contact-sagernet@sekai.icu>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
In addition, no derivative work may use the name or imply association
|
||||
with this application without prior consent.
|
||||
Binary file not shown.
Binary file not shown.
BIN
singbox_tray.exe
BIN
singbox_tray.exe
Binary file not shown.
BIN
singbox_tray.pdb
BIN
singbox_tray.pdb
Binary file not shown.
142
updater.jai
142
updater.jai
@ -56,30 +56,43 @@ download_url :: (url: string) -> string, bool, string {
|
||||
}
|
||||
|
||||
perform_update :: () -> changed: bool, success: bool, error_msg: string {
|
||||
url_data, ok := read_entire_file("url.txt");
|
||||
if !ok return false, false, "Could not read url.txt. Please configure the Config URL first.";
|
||||
defer free(url_data);
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
if !read_ok return false, false, "config.json does not exist. Please configure the Config URL first.";
|
||||
defer free(config_data);
|
||||
|
||||
url := trim(url_data);
|
||||
if !url return false, false, "url.txt is empty. Please configure the Config URL first.";
|
||||
url := get_json_string_field(config_data, "\"_url\"");
|
||||
if !url return false, false, "No Config URL configured in config.json. Please configure the Config URL first.";
|
||||
|
||||
mode := get_json_string_field(config_data, "\"_mode\"");
|
||||
if !mode mode = "system_proxy";
|
||||
|
||||
port_str := get_json_val_field(config_data, "\"_port\"");
|
||||
port := 10801;
|
||||
if port_str {
|
||||
val, parse_ok, remainder := to_integer(port_str);
|
||||
if parse_ok {
|
||||
port = xx val;
|
||||
}
|
||||
free(port_str);
|
||||
}
|
||||
|
||||
downloaded, success, err_msg := download_url(url);
|
||||
if !success return false, false, err_msg;
|
||||
defer free(downloaded);
|
||||
|
||||
modified := modify_config_inbounds(downloaded);
|
||||
modified := modify_config_inbounds(downloaded, port);
|
||||
defer free(modified);
|
||||
|
||||
config_data, read_ok := read_entire_file("config.json");
|
||||
defer if read_ok free(config_data);
|
||||
final_config := set_json_metadata(modified, url, mode, port);
|
||||
defer free(final_config);
|
||||
|
||||
if read_ok && config_data == modified {
|
||||
if config_data == final_config {
|
||||
return false, true, "";
|
||||
}
|
||||
|
||||
write_ok := write_entire_file("config.json", modified);
|
||||
write_ok := write_entire_file("config.json", final_config);
|
||||
if !write_ok {
|
||||
return false, false, "Failed to write downloaded content to config.json";
|
||||
return false, false, "Failed to write updated content to config.json";
|
||||
}
|
||||
|
||||
return true, true, "";
|
||||
@ -108,7 +121,7 @@ updater_thread_proc :: (thread: *Thread) -> s64 {
|
||||
return 0;
|
||||
}
|
||||
|
||||
modify_config_inbounds :: (json_content: string) -> string {
|
||||
modify_config_inbounds :: (json_content: string, port: int) -> string {
|
||||
// Find "inbounds" key
|
||||
idx := find_index_from_left(json_content, "\"inbounds\"");
|
||||
if idx == -1 {
|
||||
@ -117,7 +130,7 @@ modify_config_inbounds :: (json_content: string) -> string {
|
||||
|
||||
builder: String_Builder;
|
||||
append(*builder, slice(json_content, 0, first_brace + 1));
|
||||
append(*builder, "\n \"inbounds\": [\n {\n \"type\": \"mixed\",\n \"listen\": \"127.0.0.1\",\n \"listen_port\": 20122\n }\n ],");
|
||||
append(*builder, tprint("\n \"inbounds\": [\n {\n \"type\": \"mixed\",\n \"listen\": \"127.0.0.1\",\n \"listen_port\": %\n }\n ],", port));
|
||||
append(*builder, slice(json_content, first_brace + 1, json_content.count - (first_brace + 1)));
|
||||
return builder_to_string(*builder);
|
||||
}
|
||||
@ -157,8 +170,109 @@ modify_config_inbounds :: (json_content: string) -> string {
|
||||
|
||||
builder: String_Builder;
|
||||
append(*builder, slice(json_content, 0, open_bracket_idx));
|
||||
append(*builder, "[\n {\n \"type\": \"mixed\",\n \"listen\": \"127.0.0.1\",\n \"listen_port\": 20122\n }\n ]");
|
||||
append(*builder, tprint("[\n {\n \"type\": \"mixed\",\n \"listen\": \"127.0.0.1\",\n \"listen_port\": %\n }\n ]", port));
|
||||
append(*builder, slice(json_content, close_bracket_idx + 1, json_content.count - (close_bracket_idx + 1)));
|
||||
|
||||
return builder_to_string(*builder);
|
||||
}
|
||||
|
||||
get_json_string_field :: (json: string, field: string) -> string {
|
||||
idx := find_index_from_left(json, field);
|
||||
if idx == -1 return "";
|
||||
|
||||
search_start := idx + field.count;
|
||||
open_quote := -1;
|
||||
for i: search_start..json.count-1 {
|
||||
if json[i] == #char "\"" {
|
||||
open_quote = i;
|
||||
break;
|
||||
} else if json[i] == #char ":" || is_space(json[i]) {
|
||||
continue;
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if open_quote == -1 return "";
|
||||
|
||||
close_quote := -1;
|
||||
for i: open_quote+1..json.count-1 {
|
||||
if json[i] == #char "\"" && json[i-1] != #char "\\" {
|
||||
close_quote = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if close_quote == -1 return "";
|
||||
|
||||
return slice(json, open_quote + 1, close_quote - open_quote - 1);
|
||||
}
|
||||
|
||||
get_json_val_field :: (json: string, field: string) -> string {
|
||||
idx := find_index_from_left(json, field);
|
||||
if idx == -1 return "";
|
||||
|
||||
search_start := idx + field.count;
|
||||
val_start := -1;
|
||||
for i: search_start..json.count-1 {
|
||||
if json[i] == #char ":" || is_space(json[i]) {
|
||||
continue;
|
||||
} else {
|
||||
val_start = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if val_start == -1 return "";
|
||||
|
||||
val_end := val_start;
|
||||
while val_end < json.count - 1 {
|
||||
next_char := json[val_end + 1];
|
||||
if next_char == #char "," || next_char == #char "\n" || next_char == #char "\r" || next_char == #char "}" || next_char == #char "]" {
|
||||
break;
|
||||
}
|
||||
val_end += 1;
|
||||
}
|
||||
|
||||
return trim(slice(json, val_start, val_end - val_start + 1));
|
||||
}
|
||||
|
||||
set_json_metadata :: (json: string, url: string, mode: string, port: int) -> string {
|
||||
lines := split(json, "\n");
|
||||
defer array_free(lines);
|
||||
|
||||
builder: String_Builder;
|
||||
|
||||
inserted := false;
|
||||
for lines {
|
||||
trimmed := trim(it);
|
||||
if find_index_from_left(trimmed, "\"_url\"") != -1 continue;
|
||||
if find_index_from_left(trimmed, "\"_mode\"") != -1 continue;
|
||||
if find_index_from_left(trimmed, "\"_port\"") != -1 continue;
|
||||
|
||||
append(*builder, it);
|
||||
append(*builder, "\n");
|
||||
|
||||
if !inserted && find_index_from_left(trimmed, "{") != -1 {
|
||||
append(*builder, tprint(" \"_url\": \"%\",\n \"_mode\": \"%\",\n \"_port\": %,\n", url, mode, port));
|
||||
inserted = true;
|
||||
}
|
||||
}
|
||||
|
||||
return builder_to_string(*builder);
|
||||
}
|
||||
|
||||
strip_json_metadata :: (json: string) -> string {
|
||||
lines := split(json, "\n");
|
||||
defer array_free(lines);
|
||||
|
||||
builder: String_Builder;
|
||||
for lines {
|
||||
trimmed := trim(it);
|
||||
if find_index_from_left(trimmed, "\"_url\"") != -1 continue;
|
||||
if find_index_from_left(trimmed, "\"_mode\"") != -1 continue;
|
||||
if find_index_from_left(trimmed, "\"_port\"") != -1 continue;
|
||||
|
||||
append(*builder, it);
|
||||
append(*builder, "\n");
|
||||
}
|
||||
|
||||
return builder_to_string(*builder);
|
||||
}
|
||||
|
||||
@ -29,6 +29,7 @@ DEFAULT_GUI_FONT :: 17;
|
||||
COLOR_WINDOW :: 5;
|
||||
SS_LEFT :: 0x00000000;
|
||||
ES_AUTOHSCROLL :: 0x0080;
|
||||
ES_NUMBER :: 0x2000;
|
||||
BS_DEFPUSHBUTTON :: 0x00000001;
|
||||
BS_PUSHBUTTON :: 0x00000000;
|
||||
GWLP_USERDATA :: -21;
|
||||
@ -80,6 +81,7 @@ CMD_UPDATE_NOW :: 1004;
|
||||
CMD_EXIT :: 1005;
|
||||
CMD_MODE_PROXY :: 1006;
|
||||
CMD_MODE_SYS_PROXY :: 1007;
|
||||
CMD_SET_PORT :: 1008;
|
||||
|
||||
// Boolean constants
|
||||
FALSE :: 0;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user