Open DevLothen opened 1 month ago
this is a simple PacketTunnelProvider written for LibXray 1.8.24
import NetworkExtension
import LibXray
import Tun2SocksKit
struct XrayConfigRequest: Encodable {
let datDir: String
let configPath: String
let maxMemory: Int64
}
class PacketTunnelProvider: NEPacketTunnelProvider {
let MTU = 8500
let PORT = 10864
override func startTunnel(options: [String : NSObject]?) async throws {
guard
let cfg = options?["config"] as? NSString,
let cfg = XrayConfig.fix(cfg as String, port: PORT)
else {
throw NSError(domain: "BadConfig", code: 0)
}
try startXray(with: cfg)
try await setTunnelNetworkSettings()
startTun2Socks()
}
func startXray(with config: Data) throws {
let configURL = FilePath.homeDirectory.appendingPathComponent("config.json")
try config.write(to: configURL)
let config = XrayConfigRequest(
datDir: FilePath.homeDirectory.path,
configPath: configURL.path,
maxMemory: 24 * 1024 * 1024
)
let configData = try JSONEncoder().encode(config)
let thread = Thread { [configData] in
let _ = LibXrayRunXray(configData.base64EncodedString())
}
thread.start()
}
func startTun2Socks() {
let cfg = """
tunnel:
mtu: \(MTU)
socks5:
port: \(PORT)
address: ::1
udp: 'udp'
misc:
task-stack-size: 20480
connect-timeout: 5000
read-write-timeout: 60000
log-file: \(FilePath.hevLog.path)
log-level: debug
limit-nofile: 65535
"""
let thread = Thread { [cfg] in
let result = Socks5Tunnel.run(withConfig: .string(content: cfg))
NSLog("HEV DONE \(result)")
}
thread.start()
}
func setTunnelNetworkSettings() async throws {
let dnsServers = ["198.18.0.2"]
let settings = NEPacketTunnelNetworkSettings(tunnelRemoteAddress: "127.0.0.1")
settings.mtu = NSNumber(integerLiteral: 8500)
settings.ipv4Settings = {
let settings = NEIPv4Settings(addresses: ["198.18.0.1"], subnetMasks: ["255.255.255.0"])
settings.includedRoutes = [NEIPv4Route.default()]
return settings
}()
settings.ipv6Settings = {
let settings = NEIPv6Settings(addresses: ["fd6e:a81b:704f:1211::1"], networkPrefixLengths: [64])
settings.includedRoutes = [NEIPv6Route.default()]
return settings
}()
settings.dnsSettings = NEDNSSettings(servers: dnsServers)
try await setTunnelNetworkSettings(settings)
}
override func stopTunnel(with reason: NEProviderStopReason) async {
Socks5Tunnel.quit()
LibXrayStopXray()
}
override func handleAppMessage(_ messageData: Data) async -> Data? {
return nil
}
override func sleep() async {}
override func wake() {}
}
Thanks for the answer and for the example provided. I tried to run it, but still nothing loads after connection
What else do I need to pay attention to or change?
If you can tell me how to get the log from LibXray, then I would provide it to you
[2024-09-24 01:06:59] [D] socks5 tunnel init [2024-09-24 01:06:59] [D] socks5 tunnel run [2024-09-24 01:06:59] [D] socks5 tunnel lwip task run [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 construct [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client construct [2024-09-24 01:06:59] [I] 0x1051481d0 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 session udp new [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 construct [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client construct [2024-09-24 01:06:59] [I] 0x1051482b0 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 session udp new [2024-09-24 01:06:59] [D] 0x105148390 socks5 construct [2024-09-24 01:06:59] [D] 0x105148390 socks5 client construct [2024-09-24 01:06:59] [I] 0x105148390 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x105148390 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x105148390 socks5 session udp new [2024-09-24 01:06:59] [D] 0x105148470 socks5 construct [2024-09-24 01:06:59] [D] 0x105148470 socks5 client construct [2024-09-24 01:06:59] [I] 0x105148470 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x105148470 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x105148470 socks5 session udp new [2024-09-24 01:06:59] [D] 0x105148550 socks5 construct [2024-09-24 01:06:59] [D] 0x105148550 socks5 client construct [2024-09-24 01:06:59] [I] 0x105148550 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x105148550 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x105148550 socks5 session udp new [2024-09-24 01:06:59] [D] 0x105148630 socks5 construct [2024-09-24 01:06:59] [D] 0x105148630 socks5 client construct [2024-09-24 01:06:59] [I] 0x105148630 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x105148630 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x105148630 socks5 session udp new [2024-09-24 01:06:59] [D] 0x105148710 socks5 construct [2024-09-24 01:06:59] [D] 0x105148710 socks5 client construct [2024-09-24 01:06:59] [I] 0x105148710 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x105148710 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x105148710 socks5 session udp new [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 construct [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client construct [2024-09-24 01:06:59] [I] 0x1051487f0 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 session udp new [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 construct [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client construct [2024-09-24 01:06:59] [I] 0x1051488d0 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 session udp new [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 construct [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client construct [2024-09-24 01:06:59] [I] 0x1051489b0 socks5 client udp construct [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 session udp construct [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 session udp new [2024-09-24 01:06:59] [D] socks5 tunnel timer task run [2024-09-24 01:06:59] [D] socks5 tunnel event task run [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 session run [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client connect server [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 session run [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client connect server [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x105148390 socks5 session run [2024-09-24 01:06:59] [D] 0x105148390 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x105148390 socks5 client connect server [2024-09-24 01:06:59] [D] 0x105148390 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x105148470 socks5 session run [2024-09-24 01:06:59] [D] 0x105148470 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x105148470 socks5 client connect server [2024-09-24 01:06:59] [D] 0x105148470 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x105148550 socks5 session run [2024-09-24 01:06:59] [D] 0x105148550 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x105148550 socks5 client connect server [2024-09-24 01:06:59] [D] 0x105148550 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x105148630 socks5 session run [2024-09-24 01:06:59] [D] 0x105148630 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x105148630 socks5 client connect server [2024-09-24 01:06:59] [D] 0x105148630 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x105148710 socks5 session run [2024-09-24 01:06:59] [D] 0x105148710 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x105148710 socks5 client connect server [2024-09-24 01:06:59] [D] 0x105148710 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 session run [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client connect server [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 session run [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client connect server [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 session run [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client connect [::1]:10864 [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client connect server [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 session udp bind [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client connect server fd 14 [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x1051481d0 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client connect server fd 15 [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x1051482b0 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x105148390 socks5 client connect server fd 16 [2024-09-24 01:06:59] [D] 0x105148390 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x105148390 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x105148390 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x105148470 socks5 client connect server fd 17 [2024-09-24 01:06:59] [D] 0x105148470 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x105148470 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x105148470 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x105148550 socks5 client connect server fd 18 [2024-09-24 01:06:59] [D] 0x105148550 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x105148550 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x105148550 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x105148630 socks5 client connect server fd 19 [2024-09-24 01:06:59] [D] 0x105148630 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x105148630 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x105148630 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x105148710 socks5 client connect server fd 20 [2024-09-24 01:06:59] [D] 0x105148710 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x105148710 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x105148710 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client connect server fd 21 [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x1051487f0 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client connect server fd 22 [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x1051488d0 socks5 client read auth method [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client connect server fd 23 [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client handshake standard [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client write auth methods [2024-09-24 01:06:59] [D] 0x1051489b0 socks5 client read auth method [2024-09-24 01:07:03] [D] 0x105148a90 socks5 construct [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client construct [2024-09-24 01:07:03] [I] 0x105148a90 socks5 client udp construct [2024-09-24 01:07:03] [D] 0x105148a90 socks5 session udp construct [2024-09-24 01:07:03] [D] 0x105148a90 socks5 session udp new [2024-09-24 01:07:03] [D] 0x105148b70 socks5 construct [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client construct [2024-09-24 01:07:03] [I] 0x105148b70 socks5 client udp construct [2024-09-24 01:07:03] [D] 0x105148b70 socks5 session udp construct [2024-09-24 01:07:03] [D] 0x105148b70 socks5 session udp new [2024-09-24 01:07:03] [D] 0x105148a90 socks5 session run [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client connect [::1]:10864 [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client connect server [2024-09-24 01:07:03] [D] 0x105148a90 socks5 session udp bind [2024-09-24 01:07:03] [D] 0x105148b70 socks5 session run [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client connect [::1]:10864 [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client connect server [2024-09-24 01:07:03] [D] 0x105148b70 socks5 session udp bind [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client connect server fd 24 [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client handshake standard [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client write auth methods [2024-09-24 01:07:03] [D] 0x105148a90 socks5 client read auth method [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client connect server fd 25 [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client handshake standard [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client write auth methods [2024-09-24 01:07:03] [D] 0x105148b70 socks5 client read auth method [2024-09-24 01:07:04] [D] 0x105148c50 socks5 construct [2024-09-24 01:07:04] [D] 0x105148c50 socks5 client construct [2024-09-24 01:07:04] [I] 0x105148c50 socks5 client udp construct [2024-09-24 01:07:04] [D] 0x105148c50 socks5 session udp construct [2024-09-24 01:07:04] [D] 0x105148c50 socks5 session udp new [2024-09-24 01:07:04] [D] 0x105148d30 socks5 construct [2024-09-24 01:07:04] [D] 0x105148d30 socks5 client construct [2024-09-24 01:07:04] [I] 0x105148d30 socks5 client udp construct [2024-09-24 01:07:04] [D] 0x105148d30 socks5 session udp construct [2024-09-24 01:07:04] [D] 0x105148d30 socks5 session udp new [2024-09-24 01:07:04] [D] 0x105148e10 socks5 construct [2024-09-24 01:07:04] [D] 0x105148e10 socks5 client construct [2024-09-24 01:07:04] [I] 0x105148e10 socks5 client udp construct [2024-09-24 01:07:04] [D] 0x105148e10 socks5 session udp construct [2024-09-24 01:07:05] [D] 0x105148e10 socks5 session udp new [2024-09-24 01:07:05] [D] 0x105148c50 socks5 session run [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client connect [::1]:10864 [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client connect server [2024-09-24 01:07:05] [D] 0x105148c50 socks5 session udp bind [2024-09-24 01:07:05] [D] 0x105148d30 socks5 session run [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client connect [::1]:10864 [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client connect server [2024-09-24 01:07:05] [D] 0x105148d30 socks5 session udp bind [2024-09-24 01:07:05] [D] 0x105148e10 socks5 session run [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client connect [::1]:10864 [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client connect server [2024-09-24 01:07:05] [D] 0x105148e10 socks5 session udp bind [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client connect server fd 28 [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client handshake standard [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client write auth methods [2024-09-24 01:07:05] [D] 0x105148c50 socks5 client read auth method [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client connect server fd 29 [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client handshake standard [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client write auth methods [2024-09-24 01:07:05] [D] 0x105148d30 socks5 client read auth method [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client connect server fd 30 [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client handshake standard [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client write auth methods [2024-09-24 01:07:05] [D] 0x105148e10 socks5 client read auth method [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 construct [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client construct [2024-09-24 01:07:16] [I] 0x105148ef0 socks5 client udp construct [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 session udp construct [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 session udp new [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 construct [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client construct [2024-09-24 01:07:16] [I] 0x105148fd0 socks5 client udp construct [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 session udp construct [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 session udp new [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 construct [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client construct [2024-09-24 01:07:16] [I] 0x1051490b0 socks5 client udp construct [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 session udp construct [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 session udp new [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 session run [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client connect [::1]:10864 [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client connect server [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 session udp bind [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 session run [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client connect [::1]:10864 [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client connect server [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 session udp bind [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 session run [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client connect [::1]:10864 [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client connect server [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 session udp bind [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client connect server fd 32 [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client handshake standard [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client write auth methods [2024-09-24 01:07:16] [D] 0x105148ef0 socks5 client read auth method [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client connect server fd 33 [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client handshake standard [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client write auth methods [2024-09-24 01:07:16] [D] 0x105148fd0 socks5 client read auth method [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client connect server fd 34 [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client handshake standard [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client write auth methods [2024-09-24 01:07:16] [D] 0x1051490b0 socks5 client read auth method [2024-09-24 01:07:18] [D] 0x105149190 socks5 construct [2024-09-24 01:07:18] [D] 0x105149190 socks5 client construct [2024-09-24 01:07:18] [I] 0x105149190 socks5 client udp construct [2024-09-24 01:07:18] [D] 0x105149190 socks5 session udp construct [2024-09-24 01:07:18] [D] 0x105149190 socks5 session udp new [2024-09-24 01:07:18] [D] 0x105149270 socks5 construct [2024-09-24 01:07:18] [D] 0x105149270 socks5 client construct [2024-09-24 01:07:18] [I] 0x105149270 socks5 client udp construct [2024-09-24 01:07:18] [D] 0x105149270 socks5 session udp construct [2024-09-24 01:07:18] [D] 0x105149270 socks5 session udp new [2024-09-24 01:07:18] [D] 0x105149350 socks5 construct [2024-09-24 01:07:18] [D] 0x105149350 socks5 client construct [2024-09-24 01:07:18] [I] 0x105149350 socks5 client udp construct [2024-09-24 01:07:18] [D] 0x105149350 socks5 session udp construct [2024-09-24 01:07:18] [D] 0x105149350 socks5 session udp new [2024-09-24 01:07:18] [D] 0x105149190 socks5 session run [2024-09-24 01:07:18] [D] 0x105149190 socks5 client connect [::1]:10864 [2024-09-24 01:07:18] [D] 0x105149190 socks5 client connect server [2024-09-24 01:07:18] [D] 0x105149190 socks5 session udp bind [2024-09-24 01:07:18] [D] 0x105149270 socks5 session run [2024-09-24 01:07:18] [D] 0x105149270 socks5 client connect [::1]:10864 [2024-09-24 01:07:18] [D] 0x105149270 socks5 client connect server [2024-09-24 01:07:18] [D] 0x105149270 socks5 session udp bind [2024-09-24 01:07:18] [D] 0x105149350 socks5 session run [2024-09-24 01:07:18] [D] 0x105149350 socks5 client connect [::1]:10864 [2024-09-24 01:07:18] [D] 0x105149350 socks5 client connect server [2024-09-24 01:07:18] [D] 0x105149350 socks5 session udp bind [2024-09-24 01:07:18] [D] 0x105149190 socks5 client connect server fd 35 [2024-09-24 01:07:18] [D] 0x105149190 socks5 client handshake standard [2024-09-24 01:07:18] [D] 0x105149190 socks5 client write auth methods [2024-09-24 01:07:18] [D] 0x105149190 socks5 client read auth method [2024-09-24 01:07:18] [D] 0x105149270 socks5 client connect server fd 36 [2024-09-24 01:07:18] [D] 0x105149270 socks5 client handshake standard [2024-09-24 01:07:18] [D] 0x105149270 socks5 client write auth methods [2024-09-24 01:07:18] [D] 0x105149270 socks5 client read auth method [2024-09-24 01:07:18] [D] 0x105149350 socks5 client connect server fd 37 [2024-09-24 01:07:18] [D] 0x105149350 socks5 client handshake standard [2024-09-24 01:07:18] [D] 0x105149350 socks5 client write auth methods [2024-09-24 01:07:18] [D] 0x105149350 socks5 client read auth method [2024-09-24 01:07:25] [D] 0x105149430 socks5 construct [2024-09-24 01:07:25] [D] 0x105149430 socks5 client construct [2024-09-24 01:07:25] [I] 0x105149430 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x105149430 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x105149430 socks5 session udp new [2024-09-24 01:07:25] [D] 0x105149510 socks5 construct [2024-09-24 01:07:25] [D] 0x105149510 socks5 client construct [2024-09-24 01:07:25] [I] 0x105149510 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x105149510 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x105149510 socks5 session udp new [2024-09-24 01:07:25] [D] 0x1051495f0 socks5 construct [2024-09-24 01:07:25] [D] 0x1051495f0 socks5 client construct [2024-09-24 01:07:25] [I] 0x1051495f0 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x1051495f0 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x1051495f0 socks5 session udp new [2024-09-24 01:07:25] [D] 0x1051496d0 socks5 construct [2024-09-24 01:07:25] [D] 0x1051496d0 socks5 client construct [2024-09-24 01:07:25] [I] 0x1051496d0 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x1051496d0 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x1051496d0 socks5 session udp new [2024-09-24 01:07:25] [D] 0x1051497b0 socks5 construct [2024-09-24 01:07:25] [D] 0x1051497b0 socks5 client construct [2024-09-24 01:07:25] [I] 0x1051497b0 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x1051497b0 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x1051497b0 socks5 session udp new [2024-09-24 01:07:25] [D] 0x105149890 socks5 construct [2024-09-24 01:07:25] [D] 0x105149890 socks5 client construct [2024-09-24 01:07:25] [I] 0x105149890 socks5 client udp construct [2024-09-24 01:07:25] [D] 0x105149890 socks5 session udp construct [2024-09-24 01:07:25] [D] 0x105149890 socks5 session udp new [2024-09-24 01:07:29] [D] 0x1050386f0 socks5 construct [2024-09-24 01:07:30] [D] 0x1050386f0 socks5 client construct [2024-09-24 01:07:30] [D] 0x1050386f0 socks5 client tcp construct ip [2024-09-24 01:07:30] [I] 0x1050386f0 socks5 client tcp -> [17.57.146.140]:443 [2024-09-24 01:07:30] [D] 0x1050386f0 socks5 session tcp construct [2024-09-24 01:07:32] [D] 0x1050386f0 socks5 session tcp new 2024/09/23 23:07:25 [Info] infra/conf/serial: Reading config: &{Name:/private/var/mobile/Containers/Data/PluginKitPlugin/9E83ADE0-6193-465C-BDA6-F5BF32F7B498/tmp/config.json Format:json} [2024-09-24 01:07:40] [D] 0x105149970 socks5 construct [2024-09-24 01:07:40] [D] 0x105149970 socks5 client construct [2024-09-24 01:07:40] [I] 0x105149970 socks5 client udp construct [2024-09-24 01:07:40] [D] 0x105149970 socks5 session udp construct [2024-09-24 01:07:40] [D] 0x105149970 socks5 session udp new [2024-09-24 01:07:40] [D] 0x105149a50 socks5 construct [2024-09-24 01:07:40] [D] 0x105149a50 socks5 client construct [2024-09-24 01:07:40] [I] 0x105149a50 socks5 client udp construct [2024-09-24 01:07:40] [D] 0x105149a50 socks5 session udp construct [2024-09-24 01:07:40] [D] 0x105149a50 socks5 session udp new [2024-09-24 01:07:42] [D] 0x105149b30 socks5 construct [2024-09-24 01:07:44] [D] 0x105149b30 socks5 client construct [2024-09-24 01:07:44] [I] 0x105149b30 socks5 client udp construct [2024-09-24 01:07:44] [D] 0x105149b30 socks5 session udp construct [2024-09-24 01:07:47] [D] 0x105149b30 socks5 session udp new [2024-09-24 01:07:53] [D] 0x105149c10 socks5 construct [2024-09-24 01:07:53] [D] 0x105149c10 socks5 client construct [2024-09-24 01:07:53] [I] 0x105149c10 socks5 client udp construct [2024-09-24 01:07:53] [D] 0x105149c10 socks5 session udp construct [2024-09-24 01:07:53] [D] 0x105149c10 socks5 session udp new [2024-09-24 01:07:53] [D] 0x105149cf0 socks5 construct [2024-09-24 01:07:53] [D] 0x105149cf0 socks5 client construct [2024-09-24 01:07:53] [I] 0x105149cf0 socks5 client udp construct [2024-09-24 01:07:53] [D] 0x105149cf0 socks5 session udp construct [2024-09-24 01:07:53] [D] 0x105149cf0 socks5 session udp new [2024-09-24 01:07:53] [D] 0x105149dd0 socks5 construct [2024-09-24 01:07:53] [D] 0x105149dd0 socks5 client construct [2024-09-24 01:07:53] [I] 0x105149dd0 socks5 client udp construct [2024-09-24 01:07:53] [D] 0x105149dd0 socks5 session udp construct [2024-09-24 01:07:53] [D] 0x105149dd0 socks5 session udp new [2024-09-24 01:07:53] [D] 0x105149eb0 socks5 construct [2024-09-24 01:07:53] [D] 0x105149eb0 socks5 client construct [2024-09-24 01:07:53] [I] 0x105149eb0 socks5 client udp construct [2024-09-24 01:07:53] [D] 0x105149eb0 socks5 session udp construct [2024-09-24 01:07:53] [D] 0x105149eb0 socks5 session udp new [2024-09-24 01:07:53] [D] 0x105149f90 socks5 construct [2024-09-24 01:07:53] [D] 0x105149f90 socks5 client construct [2024-09-24 01:07:56] [I] 0x105149f90 socks5 client udp construct [2024-09-24 01:07:56] [D] 0x105149f90 socks5 session udp construct [2024-09-24 01:07:56] [D] 0x105149f90 socks5 session udp new [2024-09-24 01:07:59] [D] 0x10514a070 socks5 construct [2024-09-24 01:08:04] [D] 0x10514a070 socks5 client construct [2024-09-24 01:08:05] [I] 0x10514a070 socks5 client udp construct [2024-09-24 01:08:05] [D] 0x10514a070 socks5 session udp construct [2024-09-24 01:08:05] [D] 0x10514a070 socks5 session udp new [2024-09-24 01:08:05] [D] 0x1050386f0 socks5 session terminate [2024-09-24 01:08:05] [D] 0x10514a150 socks5 construct [2024-09-24 01:08:05] [D] 0x10514a150 socks5 client construct [2024-09-24 01:08:05] [I] 0x10514a150 socks5 client udp construct [2024-09-24 01:08:05] [D] 0x10514a150 socks5 session udp construct [2024-09-24 01:08:05] [D] 0x10514a150 socks5 session udp new [2024-09-24 01:08:05] [D] 0x10514a230 socks5 construct [2024-09-24 01:08:05] [D] 0x10514a230 socks5 client construct [2024-09-24 01:08:05] [I] 0x10514a230 socks5 client udp construct [2024-09-24 01:08:05] [D] 0x10514a230 socks5 session udp construct [2024-09-24 01:08:05] [D] 0x10514a230 socks5 session udp new [2024-09-24 01:08:12] [D] 0x10514a310 socks5 construct [2024-09-24 01:08:12] [D] 0x10514a310 socks5 client construct [2024-09-24 01:08:12] [I] 0x10514a310 socks5 client udp construct [2024-09-24 01:08:12] [D] 0x10514a310 socks5 session udp construct [2024-09-24 01:08:12] [D] 0x10514a310 socks5 session udp new [2024-09-24 01:08:12] [D] 0x10514a3f0 socks5 construct [2024-09-24 01:08:12] [D] 0x10514a3f0 socks5 client construct [2024-09-24 01:08:12] [I] 0x10514a3f0 socks5 client udp construct [2024-09-24 01:08:12] [D] 0x10514a3f0 socks5 session udp construct [2024-09-24 01:08:12] [D] 0x10514a3f0 socks5 session udp new [2024-09-24 01:08:12] [D] 0x10514a4d0 socks5 construct [2024-09-24 01:08:12] [D] 0x10514a4d0 socks5 client construct [2024-09-24 01:08:12] [I] 0x10514a4d0 socks5 client udp construct [2024-09-24 01:08:12] [D] 0x10514a4d0 socks5 session udp construct [2024-09-24 01:08:12] [D] 0x10514a4d0 socks5 session udp new [2024-09-24 01:08:12] [D] 0x10514a5b0 socks5 construct [2024-09-24 01:08:12] [D] 0x10514a5b0 socks5 client construct [2024-09-24 01:08:12] [I] 0x10514a5b0 socks5 client udp construct [2024-09-24 01:08:12] [D] 0x10514a5b0 socks5 session udp construct [2024-09-24 01:08:12] [D] 0x10514a5b0 socks5 session udp new [2024-09-24 01:08:12] [D] 0x10514a690 socks5 construct [2024-09-24 01:08:12] [D] 0x10514a690 socks5 client construct [2024-09-24 01:08:12] [I] 0x10514a690 socks5 client udp construct [2024-09-24 01:08:12] [D] 0x10514a690 socks5 session udp construct [2024-09-24 01:08:12] [D] 0x10514a690 socks5 session udp new [2024-09-24 01:08:17] [D] 0x105149430 socks5 session run [2024-09-24 01:08:17] [D] 0x105149430 socks5 client connect [::1]:10864 [2024-09-24 01:08:17] [D] 0x105149430 socks5 client connect server [2024-09-24 01:08:17] [D] 0x105149430 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149510 socks5 session run [2024-09-24 01:08:18] [D] 0x105149510 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149510 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149510 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 session run [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 session run [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 session run [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149890 socks5 session run [2024-09-24 01:08:18] [D] 0x105149890 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149890 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149890 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 session run [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 session tcp bind [2024-09-24 01:08:18] [I] 0x1051481d0 io timeout [2024-09-24 01:08:18] [E] 0x1051481d0 socks5 client read auth [2024-09-24 01:08:18] [E] 0x1051481d0 socks5 session handshake [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 session udp destruct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client udp destruct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client destruct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 destruct [2024-09-24 01:08:18] [I] 0x1051482b0 io timeout [2024-09-24 01:08:18] [E] 0x1051482b0 socks5 client read auth [2024-09-24 01:08:18] [E] 0x1051482b0 socks5 session handshake [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 session udp destruct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client udp destruct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client destruct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 destruct [2024-09-24 01:08:18] [D] 0x105149970 socks5 session run [2024-09-24 01:08:18] [D] 0x105149970 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149970 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149970 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149a50 socks5 session run [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149a50 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149b30 socks5 session run [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149b30 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149c10 socks5 session run [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149c10 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 session run [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 session run [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 session run [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x105149f90 socks5 session run [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client connect server [2024-09-24 01:08:18] [D] 0x105149f90 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a070 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a070 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a150 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a150 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a230 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a230 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a310 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a310 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a690 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a690 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 construct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client construct [2024-09-24 01:08:18] [I] 0x1051482b0 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 session udp new [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 construct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client construct [2024-09-24 01:08:18] [I] 0x1051481d0 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 session udp new [2024-09-24 01:08:18] [D] 0x10514a770 socks5 construct [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client construct [2024-09-24 01:08:18] [I] 0x10514a770 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x10514a770 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x10514a770 socks5 session udp new [2024-09-24 01:08:18] [D] 0x10514a850 socks5 construct [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client construct [2024-09-24 01:08:18] [I] 0x10514a850 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x10514a850 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x10514a850 socks5 session udp new [2024-09-24 01:08:18] [D] 0x10514a930 socks5 construct [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client construct [2024-09-24 01:08:18] [I] 0x10514a930 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x10514a930 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x10514a930 socks5 session udp new [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 construct [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client construct [2024-09-24 01:08:18] [I] 0x10514aa10 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 session udp new [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 construct [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client construct [2024-09-24 01:08:18] [I] 0x10514aaf0 socks5 client udp construct [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 session udp construct [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 session udp new [2024-09-24 01:08:18] [I] 0x105148710 io timeout [2024-09-24 01:08:18] [E] 0x105148710 socks5 client read auth [2024-09-24 01:08:18] [E] 0x105148710 socks5 session handshake [2024-09-24 01:08:18] [D] 0x105148710 socks5 session udp destruct [2024-09-24 01:08:18] [D] 0x105148710 socks5 client udp destruct [2024-09-24 01:08:18] [D] 0x105148710 socks5 client destruct [2024-09-24 01:08:18] [D] 0x105148710 socks5 destruct [2024-09-24 01:08:18] [D] 0x105149430 socks5 client connect server fd 31 [2024-09-24 01:08:18] [D] 0x105149430 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149430 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149430 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149510 socks5 client connect server fd 38 [2024-09-24 01:08:18] [D] 0x105149510 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149510 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149510 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client connect server fd 39 [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1051495f0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client connect server fd 40 [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1051496d0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client connect server fd 41 [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1051497b0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149890 socks5 client connect server fd 42 [2024-09-24 01:08:18] [D] 0x105149890 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149890 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149890 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client connect server fd 43 [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1050386f0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149970 socks5 client connect server fd 14 [2024-09-24 01:08:18] [D] 0x105149970 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149970 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149970 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client connect server fd 15 [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149a50 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client connect server fd 44 [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149b30 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client connect server fd 45 [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149c10 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client connect server fd 46 [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149cf0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client connect server fd 47 [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149dd0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client connect server fd 48 [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149eb0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client connect server fd 49 [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x105149f90 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client connect server fd 50 [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a070 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client connect server fd 51 [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a150 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client connect server fd 52 [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a230 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client connect server fd 53 [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a310 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client connect server fd 54 [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a3f0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client connect server fd 55 [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a4d0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client connect server fd 56 [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a5b0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 session run [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 session run [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a770 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a770 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a850 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a850 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a930 socks5 session run [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514a930 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 session run [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 session run [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client connect [::1]:10864 [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client connect server [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 session udp bind [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client connect server fd 57 [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a690 socks5 client read auth method [2024-09-24 01:08:18] [I] 0x105148390 io timeout [2024-09-24 01:08:18] [E] 0x105148390 socks5 client read auth [2024-09-24 01:08:18] [E] 0x105148390 socks5 session handshake [2024-09-24 01:08:18] [D] 0x105148390 socks5 session udp destruct [2024-09-24 01:08:18] [D] 0x105148390 socks5 client udp destruct [2024-09-24 01:08:18] [D] 0x105148390 socks5 client destruct [2024-09-24 01:08:18] [D] 0x105148390 socks5 destruct [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client connect server fd 20 [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1051482b0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client connect server fd 58 [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x1051481d0 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client connect server fd 59 [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a770 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client connect server fd 60 [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a850 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client connect server fd 61 [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514a930 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client connect server fd 62 [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514aa10 socks5 client read auth method [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client connect server fd 63 [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client handshake standard [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client write auth methods [2024-09-24 01:08:18] [D] 0x10514aaf0 socks5 client read auth method [2024-09-24 01:08:18] [I] 0x105148470 io timeout [2024-09-24 01:08:18] [E] 0x105148470 socks5 client read auth [2024-09-24 01:08:18] [E] 0x105148470 socks5 session handshake [2024-09-24 01:08:18] [D] 0x105148470 socks5 session udp destruct [2024-09-24 01:08:18] [D] 0x105148470 socks5 client udp destruct [2024-09-24 01:08:18] [D] 0x105148470 socks5 client destruct [2024-09-24 01:08:18] [D] 0x105148470 socks5 destruct [2024-09-24 01:08:19] [I] 0x105148550 io timeout [2024-09-24 01:08:19] [E] 0x105148550 socks5 client read auth [2024-09-24 01:08:19] [E] 0x105148550 socks5 session handshake [2024-09-24 01:08:19] [D] 0x105148550 socks5 session udp destruct [2024-09-24 01:08:19] [D] 0x105148550 socks5 client udp destruct [2024-09-24 01:08:19] [D] 0x105148550 socks5 client destruct [2024-09-24 01:08:19] [D] 0x105148550 socks5 destruct [2024-09-24 01:08:19] [I] 0x105148630 io timeout [2024-09-24 01:08:19] [E] 0x105148630 socks5 client read auth [2024-09-24 01:08:19] [E] 0x105148630 socks5 session handshake [2024-09-24 01:08:19] [D] 0x105148630 socks5 session udp destruct [2024-09-24 01:08:19] [D] 0x105148630 socks5 client udp destruct [2024-09-24 01:08:19] [D] 0x105148630 socks5 client destruct [2024-09-24 01:08:19] [D] 0x105148630 socks5 destruct [2024-09-24 01:08:19] [I] 0x1051487f0 io timeout [2024-09-24 01:08:19] [E] 0x1051487f0 socks5 client read auth [2024-09-24 01:08:19] [E] 0x1051487f0 socks5 session handshake [2024-09-24 01:08:19] [D] 0x1051487f0 socks5 session udp destruct [2024-09-24 01:08:19] [D] 0x1051487f0 socks5 client udp destruct [2024-09-24 01:08:19] [D] 0x1051487f0 socks5 client destruct [2024-09-24 01:08:19] [D] 0x1051487f0 socks5 destruct [2024-09-24 01:08:19] [I] 0x1051488d0 io timeout [2024-09-24 01:08:19] [E] 0x1051488d0 socks5 client read auth [2024-09-24 01:08:19] [E] 0x1051488d0 socks5 session handshake [2024-09-24 01:08:19] [D] 0x1051488d0 socks5 session udp destruct [2024-09-24 01:08:19] [D] 0x1051488d0 socks5 client udp destruct [2024-09-24 01:08:19] [D] 0x1051488d0 socks5 client destruct [2024-09-24 01:08:19] [D] 0x1051488d0 socks5 destruct [2024-09-24 01:08:19] [I] 0x1051489b0 io timeout [2024-09-24 01:08:19] [E] 0x1051489b0 socks5 client read auth [2024-09-24 01:08:19] [E] 0x1051489b0 socks5 session handshake [2024-09-24 01:08:19] [D] 0x1051489b0 socks5 session udp destruct [2024-09-24 01:08:19] [D] 0x1051489b0 socks5 client udp destruct [2024-09-24 01:08:19] [D] 0x1051489b0 socks5 client destruct [2024-09-24 01:08:19] [D] 0x1051489b0 socks5 destruct [2024-09-24 01:08:25] [D] 0x1051489b0 socks5 construct [2024-09-24 01:08:28] [D] 0x1051489b0 socks5 client construct [2024-09-24 01:08:28] [I] 0x1051489b0 socks5 client udp construct [2024-09-24 01:08:28] [D] 0x1051489b0 socks5 session udp construct [2024-09-24 01:08:28] [D] 0x1051489b0 socks5 session udp new [2024-09-24 01:08:28] [D] 0x1051488d0 socks5 construct [2024-09-24 01:08:28] [D] 0x1051488d0 socks5 client construct [2024-09-24 01:08:29] [I] 0x1051488d0 socks5 client udp construct [2024-09-24 01:08:29] [D] 0x1051488d0 socks5 session udp construct [2024-09-24 01:08:29] [D] 0x1051488d0 socks5 session udp new [2024-09-24 01:08:29] [D] 0x1051487f0 socks5 construct [2024-09-24 01:08:29] [D] 0x1051487f0 socks5 client construct [2024-09-24 01:08:29] [I] 0x1051487f0 socks5 client udp construct [2024-09-24 01:08:29] [D] 0x1051487f0 socks5 session udp construct [2024-09-24 01:08:29] [D] 0x1051487f0 socks5 session udp new [2024-09-24 01:08:31] [D] 0x1051489b0 socks5 session run [2024-09-24 01:08:31] [D] 0x1051489b0 socks5 client connect [::1]:10864 [2024-09-24 01:08:31] [D] 0x1051489b0 socks5 client connect server [2024-09-24 01:08:32] [D] 0x1051489b0 socks5 session udp bind [2024-09-24 01:08:33] [D] 0x1051488d0 socks5 session run [2024-09-24 01:08:33] [D] 0x1051488d0 socks5 client connect [::1]:10864 [2024-09-24 01:08:33] [D] 0x1051488d0 socks5 client connect server [2024-09-24 01:08:33] [D] 0x1051488d0 socks5 session udp bind [2024-09-24 01:08:35] [D] 0x1051487f0 socks5 session run [2024-09-24 01:08:35] [D] 0x1051487f0 socks5 client connect [::1]:10864 [2024-09-24 01:08:35] [D] 0x1051487f0 socks5 client connect server [2024-09-24 01:08:35] [D] 0x1051487f0 socks5 session udp bind [2024-09-24 01:08:37] [D] 0x105148630 socks5 construct [2024-09-24 01:08:37] [D] 0x105148630 socks5 client construct [2024-09-24 01:08:37] [I] 0x105148630 socks5 client udp construct [2024-09-24 01:08:37] [D] 0x105148630 socks5 session udp construct [2024-09-24 01:08:37] [D] 0x105148630 socks5 session udp new [2024-09-24 01:08:37] [D] 0x105148550 socks5 construct [2024-09-24 01:08:37] [D] 0x105148550 socks5 client construct [2024-09-24 01:08:37] [I] 0x105148550 socks5 client udp construct [2024-09-24 01:08:37] [D] 0x105148550 socks5 session udp construct [2024-09-24 01:08:37] [D] 0x105148550 socks5 session udp new [2024-09-24 01:08:37] [D] 0x105148470 socks5 construct [2024-09-24 01:08:37] [D] 0x105148470 socks5 client construct [2024-09-24 01:08:37] [I] 0x105148470 socks5 client udp construct [2024-09-24 01:08:37] [D] 0x105148470 socks5 session udp construct [2024-09-24 01:08:37] [D] 0x105148470 socks5 session udp new [2024-09-24 01:08:37] [D] 0x1051489b0 socks5 client connect server fd 16 [2024-09-24 01:08:37] [D] 0x1051489b0 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x1051489b0 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x1051489b0 socks5 client read auth method [2024-09-24 01:08:37] [D] 0x1051488d0 socks5 client connect server fd 17 [2024-09-24 01:08:37] [D] 0x1051488d0 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x1051488d0 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x1051488d0 socks5 client read auth method [2024-09-24 01:08:37] [D] 0x1051487f0 socks5 client connect server fd 18 [2024-09-24 01:08:37] [D] 0x1051487f0 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x1051487f0 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x1051487f0 socks5 client read auth method [2024-09-24 01:08:37] [D] 0x105148630 socks5 session run [2024-09-24 01:08:37] [D] 0x105148630 socks5 client connect [::1]:10864 [2024-09-24 01:08:37] [D] 0x105148630 socks5 client connect server [2024-09-24 01:08:37] [D] 0x105148630 socks5 session udp bind [2024-09-24 01:08:37] [D] 0x105148550 socks5 session run [2024-09-24 01:08:37] [D] 0x105148550 socks5 client connect [::1]:10864 [2024-09-24 01:08:37] [D] 0x105148550 socks5 client connect server [2024-09-24 01:08:37] [D] 0x105148550 socks5 session udp bind [2024-09-24 01:08:37] [D] 0x105148470 socks5 session run [2024-09-24 01:08:37] [D] 0x105148470 socks5 client connect [::1]:10864 [2024-09-24 01:08:37] [D] 0x105148470 socks5 client connect server [2024-09-24 01:08:37] [D] 0x105148470 socks5 session udp bind [2024-09-24 01:08:37] [D] 0x105148630 socks5 client connect server fd 19 [2024-09-24 01:08:37] [D] 0x105148630 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x105148630 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x105148630 socks5 client read auth method [2024-09-24 01:08:37] [D] 0x105148550 socks5 client connect server fd 21 [2024-09-24 01:08:37] [D] 0x105148550 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x105148550 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x105148550 socks5 client read auth method [2024-09-24 01:08:37] [D] 0x105148470 socks5 client connect server fd 22 [2024-09-24 01:08:37] [D] 0x105148470 socks5 client handshake standard [2024-09-24 01:08:37] [D] 0x105148470 socks5 client write auth methods [2024-09-24 01:08:37] [D] 0x105148470 socks5 client read auth method [2024-09-24 01:08:44] [D] 0x105148390 socks5 construct [2024-09-24 01:08:44] [D] 0x105148390 socks5 client construct [2024-09-24 01:08:44] [I] 0x105148390 socks5 client udp construct [2024-09-24 01:08:46] [D] 0x105148390 socks5 session udp construct [2024-09-24 01:08:46] [D] 0x105148390 socks5 session udp new [2024-09-24 01:08:49] [D] 0x105148710 socks5 construct [2024-09-24 01:08:49] [D] 0x105148710 socks5 client construct [2024-09-24 01:08:50] [I] 0x105148710 socks5 client udp construct [2024-09-24 01:08:50] [D] 0x105148710 socks5 session udp construct [2024-09-24 01:08:50] [D] 0x105148710 socks5 session udp new [2024-09-24 01:08:50] [D] 0x10514abd0 socks5 construct [2024-09-24 01:08:50] [D] 0x10514abd0 socks5 client construct [2024-09-24 01:08:50] [I] 0x10514abd0 socks5 client udp construct [2024-09-24 01:08:50] [D] 0x10514abd0 socks5 session udp construct [2024-09-24 01:08:50] [D] 0x10514abd0 socks5 session udp new [2024-09-24 01:08:50] [D] 0x10514acb0 socks5 construct [2024-09-24 01:08:50] [D] 0x10514acb0 socks5 client construct [2024-09-24 01:08:50] [I] 0x10514acb0 socks5 client udp construct [2024-09-24 01:08:50] [D] 0x10514acb0 socks5 session udp construct [2024-09-24 01:08:51] [D] 0x10514acb0 socks5 session udp new [2024-09-24 01:08:52] [D] 0x10514ad90 socks5 construct [2024-09-24 01:08:52] [D] 0x10514ad90 socks5 client construct [2024-09-24 01:08:52] [I] 0x10514ad90 socks5 client udp construct [2024-09-24 01:08:52] [D] 0x10514ad90 socks5 session udp construct [2024-09-24 01:08:52] [D] 0x10514ad90 socks5 session udp new [2024-09-24 01:08:52] [D] 0x10514ae70 socks5 construct [2024-09-24 01:08:52] [D] 0x10514ae70 socks5 client construct [2024-09-24 01:08:52] [I] 0x10514ae70 socks5 client udp construct [2024-09-24 01:08:53] [D] 0x10514ae70 socks5 session udp construct [2024-09-24 01:08:53] [D] 0x10514ae70 socks5 session udp new [2024-09-24 01:08:55] [D] 0x10514af50 socks5 construct [2024-09-24 01:08:55] [D] 0x10514af50 socks5 client construct [2024-09-24 01:08:55] [I] 0x10514af50 socks5 client udp construct [2024-09-24 01:08:55] [D] 0x10514af50 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514af50 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b030 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b030 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b030 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b030 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b110 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b110 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b110 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b110 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b1f0 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b2d0 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b3b0 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b490 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b490 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b490 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b490 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b570 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b570 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b570 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b570 socks5 session udp new [2024-09-24 01:08:56] [D] 0x10514b650 socks5 construct [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client construct [2024-09-24 01:08:56] [I] 0x10514b650 socks5 client udp construct [2024-09-24 01:08:56] [D] 0x10514b650 socks5 session udp construct [2024-09-24 01:08:56] [D] 0x10514b650 socks5 session udp new [2024-09-24 01:08:56] [D] 0x105148390 socks5 session run [2024-09-24 01:08:56] [D] 0x105148390 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x105148390 socks5 client connect server [2024-09-24 01:08:56] [D] 0x105148390 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x105148710 socks5 session run [2024-09-24 01:08:56] [D] 0x105148710 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x105148710 socks5 client connect server [2024-09-24 01:08:56] [D] 0x105148710 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 session run [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 session run [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 session run [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 session run [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514af50 socks5 session run [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514af50 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b030 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b030 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b110 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b110 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b490 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b490 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b570 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b570 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x10514b650 socks5 session run [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client connect [::1]:10864 [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client connect server [2024-09-24 01:08:56] [D] 0x10514b650 socks5 session udp bind [2024-09-24 01:08:56] [D] 0x105148390 socks5 client connect server fd 23 [2024-09-24 01:08:56] [D] 0x105148390 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x105148390 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x105148390 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x105148710 socks5 client connect server fd 64 [2024-09-24 01:08:56] [D] 0x105148710 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x105148710 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x105148710 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client connect server fd 65 [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514abd0 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client connect server fd 66 [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514acb0 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client connect server fd 67 [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514ad90 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client connect server fd 68 [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514ae70 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client connect server fd 69 [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514af50 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client connect server fd 70 [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b030 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client connect server fd 71 [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b110 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client connect server fd 72 [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b1f0 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client connect server fd 73 [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b2d0 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client connect server fd 74 [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b3b0 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client connect server fd 75 [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b490 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client connect server fd 76 [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b570 socks5 client read auth method [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client connect server fd 77 [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client handshake standard [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client write auth methods [2024-09-24 01:08:56] [D] 0x10514b650 socks5 client read auth method [2024-09-24 01:09:06] [D] 0x10514b730 socks5 construct [2024-09-24 01:09:06] [D] 0x10514b730 socks5 client construct [2024-09-24 01:09:06] [I] 0x10514b730 socks5 client udp construct [2024-09-24 01:09:06] [D] 0x10514b730 socks5 session udp construct [2024-09-24 01:09:06] [D] 0x10514b730 socks5 session udp new [2024-09-24 01:09:06] [D] 0x10514b810 socks5 construct [2024-09-24 01:09:06] [D] 0x10514b810 socks5 client construct [2024-09-24 01:09:06] [I] 0x10514b810 socks5 client udp construct [2024-09-24 01:09:06] [D] 0x10514b810 socks5 session udp construct [2024-09-24 01:09:06] [D] 0x10514b810 socks5 session udp new [2024-09-24 01:09:07] [D] 0x10514b730 socks5 session run [2024-09-24 01:09:07] [D] 0x10514b730 socks5 client connect [::1]:10864 [2024-09-24 01:09:07] [D] 0x10514b730 socks5 client connect server [2024-09-24 01:09:07] [D] 0x10514b730 socks5 session udp bind [2024-09-24 01:09:07] [D] 0x10514b810 socks5 session run [2024-09-24 01:09:07] [D] 0x10514b810 socks5 client connect [::1]:10864 [2024-09-24 01:09:07] [D] 0x10514b810 socks5 client connect server [2024-09-24 01:09:07] [D] 0x10514b810 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 construct [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514b8f0 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 session udp new [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 construct [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514b9d0 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 session udp new [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 construct [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514bab0 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 session udp new [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 construct [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514bb90 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 session udp new [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 construct [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514bc70 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 session udp new [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 construct [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client construct [2024-09-24 01:09:13] [I] 0x10514bd50 socks5 client udp construct [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 session udp construct [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 session udp new [2024-09-24 01:09:13] [I] 0x10514b730 io timeout [2024-09-24 01:09:13] [E] 0x10514b730 socks5 client connect [2024-09-24 01:09:13] [E] 0x10514b730 socks5 client connect [2024-09-24 01:09:13] [E] 0x10514b730 socks5 session connect [2024-09-24 01:09:13] [D] 0x10514b730 socks5 session udp destruct [2024-09-24 01:09:13] [D] 0x10514b730 socks5 client udp destruct [2024-09-24 01:09:13] [D] 0x10514b730 socks5 client destruct [2024-09-24 01:09:13] [D] 0x10514b730 socks5 destruct [2024-09-24 01:09:13] [I] 0x10514b810 io timeout [2024-09-24 01:09:13] [E] 0x10514b810 socks5 client connect [2024-09-24 01:09:13] [E] 0x10514b810 socks5 client connect [2024-09-24 01:09:13] [E] 0x10514b810 socks5 session connect [2024-09-24 01:09:13] [D] 0x10514b810 socks5 session udp destruct [2024-09-24 01:09:13] [D] 0x10514b810 socks5 client udp destruct [2024-09-24 01:09:13] [D] 0x10514b810 socks5 client destruct [2024-09-24 01:09:13] [D] 0x10514b810 socks5 destruct [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 session run [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 session run [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 session run [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 session run [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 session run [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 session run [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client connect [::1]:10864 [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client connect server [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 session udp bind [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client connect server fd 78 [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514b8f0 socks5 client read auth method [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client connect server fd 79 [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514b9d0 socks5 client read auth method [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client connect server fd 80 [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514bab0 socks5 client read auth method [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client connect server fd 81 [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514bb90 socks5 client read auth method [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client connect server fd 82 [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514bc70 socks5 client read auth method [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client connect server fd 83 [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client handshake standard [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client write auth methods [2024-09-24 01:09:13] [D] 0x10514bd50 socks5 client read auth method 2024/09/23 23:09:14 [Warning] core: Xray 1.8.24 started [2024-09-24 01:09:17] [D] 0x10514b810 socks5 construct [2024-09-24 01:09:17] [D] 0x10514b810 socks5 client construct [2024-09-24 01:09:17] [I] 0x10514b810 socks5 client udp construct [2024-09-24 01:09:17] [D] 0x10514b810 socks5 session udp construct [2024-09-24 01:09:17] [D] 0x10514b810 socks5 session udp new [2024-09-24 01:09:17] [D] 0x10514b730 socks5 construct [2024-09-24 01:09:17] [D] 0x10514b730 socks5 client construct [2024-09-24 01:09:17] [I] 0x10514b730 socks5 client udp construct [2024-09-24 01:09:17] [D] 0x10514b730 socks5 session udp construct [2024-09-24 01:09:17] [D] 0x10514b730 socks5 session udp new [2024-09-24 01:09:17] [D] 0x10514be30 socks5 construct [2024-09-24 01:09:17] [D] 0x10514be30 socks5 client construct [2024-09-24 01:09:17] [I] 0x10514be30 socks5 client udp construct [2024-09-24 01:09:17] [D] 0x10514be30 socks5 session udp construct [2024-09-24 01:09:17] [D] 0x10514be30 socks5 session udp new [2024-09-24 01:09:17] [D] 0x10514bf10 socks5 construct [2024-09-24 01:09:17] [D] 0x10514bf10 socks5 client construct [2024-09-24 01:09:17] [I] 0x10514bf10 socks5 client udp construct [2024-09-24 01:09:17] [D] 0x10514bf10 socks5 session udp construct [2024-09-24 01:09:17] [D] 0x10514bf10 socks5 session udp new [2024-09-24 01:09:17] [D] 0x10b610010 socks5 construct [2024-09-24 01:09:17] [D] 0x10b610010 socks5 client construct [2024-09-24 01:09:17] [I] 0x10b610010 socks5 client udp construct [2024-09-24 01:09:17] [D] 0x10b610010 socks5 session udp construct [2024-09-24 01:09:17] [D] 0x10b610010 socks5 session udp new [2024-09-24 01:09:17] [D] 0x10514b810 socks5 session run [2024-09-24 01:09:17] [D] 0x10514b810 socks5 client connect [::1]:10864 [2024-09-24 01:09:17] [D] 0x10514b810 socks5 client connect server [2024-09-24 01:09:20] [D] 0x10514b810 socks5 session udp bind [2024-09-24 01:09:21] [D] 0x10514b730 socks5 session run [2024-09-24 01:09:22] [D] 0x10514b730 socks5 client connect [::1]:10864 [2024-09-24 01:09:22] [D] 0x10514b730 socks5 client connect server [2024-09-24 01:09:24] [D] 0x10514b730 socks5 session udp bind [2024-09-24 01:09:24] [D] 0x10514be30 socks5 session run [2024-09-24 01:09:24] [D] 0x10514be30 socks5 client connect [::1]:10864 [2024-09-24 01:09:24] [D] 0x10514be30 socks5 client connect server [2024-09-24 01:09:24] [D] 0x10514be30 socks5 session udp bind [2024-09-24 01:09:24] [D] 0x10514bf10 socks5 session run [2024-09-24 01:09:24] [D] 0x10514bf10 socks5 client connect [::1]:10864 [2024-09-24 01:09:24] [D] 0x10514bf10 socks5 client connect server [2024-09-24 01:09:27] [D] 0x10514bf10 socks5 session udp bind [2024-09-24 01:09:28] [D] 0x10b610010 socks5 session run [2024-09-24 01:09:29] [D] 0x10b610010 socks5 client connect [::1]:10864 [2024-09-24 01:09:29] [D] 0x10b610010 socks5 client connect server [2024-09-24 01:09:30] [D] 0x10b610010 socks5 session udp bind [2024-09-24 01:09:32] [D] 0x10b6100f0 socks5 construct [2024-09-24 01:09:33] [D] 0x10b6100f0 socks5 client construct [2024-09-24 01:09:33] [I] 0x10b6100f0 socks5 client udp construct [2024-09-24 01:09:33] [D] 0x10b6100f0 socks5 session udp construct [2024-09-24 01:09:33] [D] 0x10b6100f0 socks5 session udp new [2024-09-24 01:09:33] [D] 0x10b6101d0 socks5 construct [2024-09-24 01:09:33] [D] 0x10b6101d0 socks5 client construct [2024-09-24 01:09:33] [I] 0x10b6101d0 socks5 client udp construct [2024-09-24 01:09:33] [D] 0x10b6101d0 socks5 session udp construct [2024-09-24 01:09:33] [D] 0x10b6101d0 socks5 session udp new [2024-09-24 01:09:33] [D] 0x10b6102b0 socks5 construct [2024-09-24 01:09:33] [D] 0x10b6102b0 socks5 client construct [2024-09-24 01:09:33] [I] 0x10b6102b0 socks5 client udp construct [2024-09-24 01:09:33] [D] 0x10b6102b0 socks5 session udp construct [2024-09-24 01:09:33] [D] 0x10b6102b0 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610390 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610390 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610390 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610390 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610470 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610470 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610470 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610470 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610550 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610550 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610550 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610550 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610630 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610630 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610630 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610630 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610710 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610710 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610710 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610710 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 construct [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b6107f0 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 construct [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b6108d0 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 construct [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b6109b0 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610a90 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 session udp new [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 construct [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client construct [2024-09-24 01:09:34] [I] 0x10b610b70 socks5 client udp construct [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 session udp construct [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 session udp new [2024-09-24 01:09:34] [I] 0x10514b810 io timeout [2024-09-24 01:09:34] [E] 0x10514b810 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514b810 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514b810 socks5 session connect [2024-09-24 01:09:34] [D] 0x10514b810 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x10514b810 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x10514b810 socks5 client destruct [2024-09-24 01:09:34] [D] 0x10514b810 socks5 destruct [2024-09-24 01:09:34] [I] 0x10514b730 io timeout [2024-09-24 01:09:34] [E] 0x10514b730 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514b730 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514b730 socks5 session connect [2024-09-24 01:09:34] [D] 0x10514b730 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x10514b730 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x10514b730 socks5 client destruct [2024-09-24 01:09:34] [D] 0x10514b730 socks5 destruct [2024-09-24 01:09:34] [I] 0x10514be30 io timeout [2024-09-24 01:09:34] [E] 0x10514be30 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514be30 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514be30 socks5 session connect [2024-09-24 01:09:34] [D] 0x10514be30 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x10514be30 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x10514be30 socks5 client destruct [2024-09-24 01:09:34] [D] 0x10514be30 socks5 destruct [2024-09-24 01:09:34] [I] 0x10514bf10 io timeout [2024-09-24 01:09:34] [E] 0x10514bf10 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514bf10 socks5 client connect [2024-09-24 01:09:34] [E] 0x10514bf10 socks5 session connect [2024-09-24 01:09:34] [D] 0x10514bf10 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x10514bf10 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x10514bf10 socks5 client destruct [2024-09-24 01:09:34] [D] 0x10514bf10 socks5 destruct [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client connect server fd 93 [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610390 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610390 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610470 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610470 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610550 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610550 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610630 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610630 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610710 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610710 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 session run [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 session run [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client connect [::1]:10864 [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client connect server [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 session udp bind [2024-09-24 01:09:34] [I] 0x105148a90 io timeout [2024-09-24 01:09:34] [E] 0x105148a90 socks5 client read auth [2024-09-24 01:09:34] [E] 0x105148a90 socks5 session handshake [2024-09-24 01:09:34] [D] 0x105148a90 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x105148a90 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x105148a90 socks5 client destruct [2024-09-24 01:09:34] [D] 0x105148a90 socks5 destruct [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610010 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client connect server fd 86 [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client connect server fd 88 [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client connect server fd 89 [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client read auth method 2024/09/23 23:09:34 [Warning] [3924108419] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00" 2024/09/23 23:09:34 [Warning] [2401454831] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00" 2024/09/23 23:09:34 [Warning] [3850670086] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00" 2024/09/23 23:09:34 [Warning] [573919059] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00" [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client connect server fd 91 [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client connect server fd 96 [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client connect server fd 97 [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client connect server fd 98 [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client connect server fd 100 [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client connect server fd 108 [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client connect server fd 109 [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client connect server fd 110 [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client connect server fd 112 [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client read auth method [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client connect server fd 114 [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client handshake standard [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client write auth methods [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client read auth method [2024-09-24 01:09:34] [I] 0x105148b70 io timeout [2024-09-24 01:09:34] [E] 0x105148b70 socks5 client read auth [2024-09-24 01:09:34] [E] 0x105148b70 socks5 session handshake [2024-09-24 01:09:34] [D] 0x105148b70 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x105148b70 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x105148b70 socks5 client destruct [2024-09-24 01:09:34] [D] 0x105148b70 socks5 destruct [2024-09-24 01:09:34] [D] 0x10b610010 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b610010 socks5 session udp splice [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6101d0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6102b0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610390 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610470 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610550 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610630 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610710 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 session udp splice [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6108d0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b6109b0 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610a90 socks5 client read response [2024-09-24 01:09:34] [I] 0x105149430 io timeout [2024-09-24 01:09:34] [E] 0x105149430 socks5 client read auth [2024-09-24 01:09:34] [E] 0x105149430 socks5 session handshake [2024-09-24 01:09:34] [D] 0x105149430 socks5 session udp destruct [2024-09-24 01:09:34] [D] 0x105149430 socks5 client udp destruct [2024-09-24 01:09:34] [D] 0x105149430 socks5 client destruct [2024-09-24 01:09:34] [D] 0x105149430 socks5 destruct [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client write request [2024-09-24 01:09:34] [D] 0x10b610b70 socks5 client read response [2024-09-24 01:09:34] [D] 0x10b610010 socks5 udp recvfrom udp [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 session udp bind [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 session udp splice [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:34] [D] 0x10b6100f0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6101d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6102b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b610390 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b610390 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b610390 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b610470 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b610470 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b610470 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b610550 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b610550 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b610550 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b610630 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b610630 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b610630 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6107f0 socks5 udp recvfrom udp [2024-09-24 01:09:35] [D] 0x10b610710 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b610710 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b610710 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6109b0 socks5 session udp bind [2024-09-24 01:09:35] [D] 0x10b6109b0 socks5 session udp splice [2024-09-24 01:09:35] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:35] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:39] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:40] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 session udp bind [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 session udp splice [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:40] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:40] [I] 0x105149510 io timeout [2024-09-24 01:09:40] [E] 0x105149510 socks5 client read auth [2024-09-24 01:09:40] [E] 0x105149510 socks5 session handshake [2024-09-24 01:09:40] [D] 0x105149510 socks5 session udp destruct [2024-09-24 01:09:40] [D] 0x105149510 socks5 client udp destruct [2024-09-24 01:09:40] [D] 0x105149510 socks5 client destruct [2024-09-24 01:09:40] [D] 0x105149510 socks5 destruct [2024-09-24 01:09:40] [D] 0x10b610b70 socks5 session udp bind [2024-09-24 01:09:40] [D] 0x10b610b70 socks5 session udp splice [2024-09-24 01:09:41] [D] 0x10b610b70 socks5 udp sendto [2024-09-24 01:09:42] [D] 0x10b610b70 socks5 udp sendto [2024-09-24 01:09:43] [D] 0x10b6100f0 socks5 udp recvfrom udp [2024-09-24 01:09:43] [D] 0x10b6101d0 socks5 udp recvfrom udp [2024-09-24 01:09:45] [D] 0x10b6102b0 socks5 udp recvfrom udp [2024-09-24 01:09:47] [D] 0x10b610390 socks5 udp recvfrom udp [2024-09-24 01:09:48] [D] 0x10b610390 socks5 udp sendto [2024-09-24 01:09:48] [D] 0x10b610470 socks5 udp recvfrom udp [2024-09-24 01:09:48] [D] 0x10b610470 socks5 udp sendto [2024-09-24 01:09:48] [D] 0x10b610550 socks5 udp recvfrom udp [2024-09-24 01:09:48] [D] 0x10b610630 socks5 udp recvfrom udp [2024-09-24 01:09:48] [D] 0x10b610710 socks5 udp recvfrom udp [2024-09-24 01:09:49] [D] 0x10b6108d0 socks5 udp recvfrom udp [2024-09-24 01:09:49] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:49] [D] 0x10b6109b0 socks5 udp recvfrom udp [2024-09-24 01:09:49] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:50] [D] 0x10b610a90 socks5 udp recvfrom udp [2024-09-24 01:09:50] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:50] [I] 0x1051495f0 io timeout [2024-09-24 01:09:50] [E] 0x1051495f0 socks5 client read auth [2024-09-24 01:09:50] [E] 0x1051495f0 socks5 session handshake [2024-09-24 01:09:50] [D] 0x1051495f0 socks5 session udp destruct [2024-09-24 01:09:50] [D] 0x1051495f0 socks5 client udp destruct [2024-09-24 01:09:50] [D] 0x1051495f0 socks5 client destruct [2024-09-24 01:09:50] [D] 0x1051495f0 socks5 destruct [2024-09-24 01:09:51] [D] 0x10b610b70 socks5 udp recvfrom udp [2024-09-24 01:09:51] [D] 0x10b610b70 socks5 udp sendto [2024-09-24 01:09:52] [D] 0x10b610b70 socks5 udp sendto [2024-09-24 01:09:52] [D] 0x10b610b70 socks5 udp sendto [2024-09-24 01:09:53] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:53] [D] 0x1051495f0 socks5 construct [2024-09-24 01:09:53] [D] 0x1051495f0 socks5 client construct [2024-09-24 01:09:53] [I] 0x1051495f0 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x1051495f0 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x1051495f0 socks5 session udp new [2024-09-24 01:09:53] [D] 0x105149510 socks5 construct [2024-09-24 01:09:53] [D] 0x105149510 socks5 client construct [2024-09-24 01:09:53] [I] 0x105149510 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x105149510 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x105149510 socks5 session udp new [2024-09-24 01:09:53] [D] 0x105149430 socks5 construct [2024-09-24 01:09:53] [D] 0x105149430 socks5 client construct [2024-09-24 01:09:53] [I] 0x105149430 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x105149430 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x105149430 socks5 session udp new [2024-09-24 01:09:53] [D] 0x105148b70 socks5 construct [2024-09-24 01:09:53] [D] 0x105148b70 socks5 client construct [2024-09-24 01:09:53] [I] 0x105148b70 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x105148b70 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x105148b70 socks5 session udp new [2024-09-24 01:09:53] [D] 0x105148a90 socks5 construct [2024-09-24 01:09:53] [D] 0x105148a90 socks5 client construct [2024-09-24 01:09:53] [I] 0x105148a90 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x105148a90 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x105148a90 socks5 session udp new [2024-09-24 01:09:53] [D] 0x10514bf10 socks5 construct [2024-09-24 01:09:53] [D] 0x10514bf10 socks5 client construct [2024-09-24 01:09:53] [I] 0x10514bf10 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x10514bf10 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x10514bf10 socks5 session udp new [2024-09-24 01:09:53] [D] 0x10514be30 socks5 construct [2024-09-24 01:09:53] [D] 0x10514be30 socks5 client construct [2024-09-24 01:09:53] [I] 0x10514be30 socks5 client udp construct [2024-09-24 01:09:53] [D] 0x10514be30 socks5 session udp construct [2024-09-24 01:09:53] [D] 0x10514be30 socks5 session udp new [2024-09-24 01:09:54] [D] 0x10514b730 socks5 construct [2024-09-24 01:09:54] [D] 0x10514b730 socks5 client construct [2024-09-24 01:09:54] [I] 0x10514b730 socks5 client udp construct [2024-09-24 01:09:54] [D] 0x10514b730 socks5 session udp construct [2024-09-24 01:09:54] [D] 0x10514b730 socks5 session udp new [2024-09-24 01:09:54] [D] 0x10514b810 socks5 construct [2024-09-24 01:09:54] [D] 0x10514b810 socks5 client construct [2024-09-24 01:09:54] [I] 0x10514b810 socks5 client udp construct [2024-09-24 01:09:54] [D] 0x10514b810 socks5 session udp construct [2024-09-24 01:09:54] [D] 0x10514b810 socks5 session udp new [2024-09-24 01:09:54] [D] 0x10b610c50 socks5 construct [2024-09-24 01:09:54] [D] 0x10b610c50 socks5 client construct [2024-09-24 01:09:54] [I] 0x10b610c50 socks5 client udp construct [2024-09-24 01:09:54] [D] 0x10b610c50 socks5 session udp construct [2024-09-24 01:09:54] [D] 0x10b610c50 socks5 session udp new [2024-09-24 01:09:54] [D] 0x10b610d30 socks5 construct [2024-09-24 01:09:54] [D] 0x10b610d30 socks5 client construct [2024-09-24 01:09:54] [I] 0x10b610d30 socks5 client udp construct [2024-09-24 01:09:54] [D] 0x10b610d30 socks5 session udp construct [2024-09-24 01:09:54] [D] 0x10b610d30 socks5 session udp new [2024-09-24 01:09:54] [I] 0x1051496d0 io timeout [2024-09-24 01:09:54] [E] 0x1051496d0 socks5 client read auth [2024-09-24 01:09:54] [E] 0x1051496d0 socks5 session handshake [2024-09-24 01:09:54] [D] 0x1051496d0 socks5 session udp destruct [2024-09-24 01:09:54] [D] 0x1051496d0 socks5 client udp destruct [2024-09-24 01:09:54] [D] 0x1051496d0 socks5 client destruct [2024-09-24 01:09:54] [D] 0x1051496d0 socks5 destruct [2024-09-24 01:09:54] [D] 0x1051495f0 socks5 session run [2024-09-24 01:09:54] [D] 0x1051495f0 socks5 client connect [::1]:10864 [2024-09-24 01:09:54] [D] 0x1051495f0 socks5 client connect server [2024-09-24 01:09:54] [D] 0x1051495f0 socks5 session udp bind [2024-09-24 01:09:56] [D] 0x105149510 socks5 session run [2024-09-24 01:09:56] [D] 0x105149510 socks5 client connect [::1]:10864 [2024-09-24 01:09:56] [D] 0x105149510 socks5 client connect server [2024-09-24 01:09:56] [D] 0x105149510 socks5 session udp bind [2024-09-24 01:09:57] [D] 0x105149430 socks5 session run [2024-09-24 01:09:57] [D] 0x105149430 socks5 client connect [::1]:10864 [2024-09-24 01:09:57] [D] 0x105149430 socks5 client connect server [2024-09-24 01:09:57] [D] 0x105149430 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x105148b70 socks5 session run [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client connect server [2024-09-24 01:09:59] [D] 0x105148b70 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x105148a90 socks5 session run [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client connect server [2024-09-24 01:09:59] [D] 0x105148a90 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 session run [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10514be30 socks5 session run [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10514be30 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10514b730 socks5 session run [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10514b730 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10514b810 socks5 session run [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10514b810 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 session run [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 session run [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b6107f0 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 construct [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client construct [2024-09-24 01:09:59] [I] 0x1051496d0 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 construct [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b610e10 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 construct [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b610ef0 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 construct [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b610fd0 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 construct [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b6110b0 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b611190 socks5 construct [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b611190 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b611190 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b611190 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b611270 socks5 construct [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b611270 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b611270 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b611270 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b611350 socks5 construct [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b611350 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b611350 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b611350 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b611430 socks5 construct [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b611430 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b611430 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b611430 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b611510 socks5 construct [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b611510 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b611510 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b611510 socks5 session udp new [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 construct [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client construct [2024-09-24 01:09:59] [I] 0x10b6115f0 socks5 client udp construct [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 session udp construct [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 session udp new [2024-09-24 01:09:59] [I] 0x1051497b0 io timeout [2024-09-24 01:09:59] [E] 0x1051497b0 socks5 client read auth [2024-09-24 01:09:59] [E] 0x1051497b0 socks5 session handshake [2024-09-24 01:09:59] [D] 0x1051497b0 socks5 session udp destruct [2024-09-24 01:09:59] [D] 0x1051497b0 socks5 client udp destruct [2024-09-24 01:09:59] [D] 0x1051497b0 socks5 client destruct [2024-09-24 01:09:59] [D] 0x1051497b0 socks5 destruct [2024-09-24 01:09:59] [I] 0x1051495f0 io timeout [2024-09-24 01:09:59] [E] 0x1051495f0 socks5 client connect [2024-09-24 01:09:59] [E] 0x1051495f0 socks5 client connect [2024-09-24 01:09:59] [E] 0x1051495f0 socks5 session connect [2024-09-24 01:09:59] [D] 0x1051495f0 socks5 session udp destruct [2024-09-24 01:09:59] [D] 0x1051495f0 socks5 client udp destruct [2024-09-24 01:09:59] [D] 0x1051495f0 socks5 client destruct [2024-09-24 01:09:59] [D] 0x1051495f0 socks5 destruct [2024-09-24 01:09:59] [D] 0x105149510 socks5 client connect server fd 140 [2024-09-24 01:09:59] [D] 0x105149510 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x105149510 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x105149510 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x105149430 socks5 client connect server fd 141 [2024-09-24 01:09:59] [D] 0x105149430 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x105149430 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x105149430 socks5 client read auth method 2024/09/23 23:09:59 [Warning] [2096934390] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00" [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client connect server fd 142 [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client connect server fd 143 [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client connect server fd 145 [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client connect server fd 148 [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client write request [2024-09-24 01:09:59] [D] 0x10514be30 socks5 client read response [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client connect server fd 152 [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client connect server fd 153 [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client connect server fd 154 [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client connect server fd 155 [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b6108d0 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10b6109b0 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10b610a90 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 session run [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client connect server [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 session run [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 session run [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 session run [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 session run [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b611190 socks5 session run [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b611190 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b611270 socks5 session run [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b611270 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b611350 socks5 session run [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b611350 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b611430 socks5 session run [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b611430 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b611510 socks5 session run [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b611510 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 session run [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client connect [::1]:10864 [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client connect server [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 session udp bind [2024-09-24 01:09:59] [I] 0x105149890 io timeout [2024-09-24 01:09:59] [E] 0x105149890 socks5 client read auth [2024-09-24 01:09:59] [E] 0x105149890 socks5 session handshake [2024-09-24 01:09:59] [D] 0x105149890 socks5 session udp destruct [2024-09-24 01:09:59] [D] 0x105149890 socks5 client udp destruct [2024-09-24 01:09:59] [D] 0x105149890 socks5 client destruct [2024-09-24 01:09:59] [D] 0x105149890 socks5 destruct [2024-09-24 01:09:59] [D] 0x105149510 socks5 client write request [2024-09-24 01:09:59] [D] 0x105149510 socks5 client read response [2024-09-24 01:09:59] [D] 0x105149430 socks5 client write request [2024-09-24 01:09:59] [D] 0x105149430 socks5 client read response [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client write request [2024-09-24 01:09:59] [D] 0x105148b70 socks5 client read response [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client write request [2024-09-24 01:09:59] [D] 0x105148a90 socks5 client read response [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client write request [2024-09-24 01:09:59] [D] 0x10514bf10 socks5 client read response [2024-09-24 01:09:59] [D] 0x10514be30 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x10514be30 socks5 session udp splice [2024-09-24 01:09:59] [D] 0x10514be30 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10514be30 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10514be30 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10514be30 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client write request [2024-09-24 01:09:59] [D] 0x10514b730 socks5 client read response [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client write request [2024-09-24 01:09:59] [D] 0x10514b810 socks5 client read response [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client write request [2024-09-24 01:09:59] [D] 0x10b610c50 socks5 client read response [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client write request [2024-09-24 01:09:59] [D] 0x10b610d30 socks5 client read response [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client connect server fd 41 [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x1051496d0 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client connect server fd 139 [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b610e10 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client connect server fd 162 [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b610ef0 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client connect server fd 163 [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b610fd0 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client connect server fd 166 [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b6110b0 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client connect server fd 167 [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b611190 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client connect server fd 168 [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b611270 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client connect server fd 169 [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b611350 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client connect server fd 172 [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b611430 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client connect server fd 174 [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b611510 socks5 client read auth method [2024-09-24 01:09:59] [I] 0x1050386f0 io timeout [2024-09-24 01:09:59] [E] 0x1050386f0 socks5 client read auth [2024-09-24 01:09:59] [E] 0x1050386f0 socks5 session handshake [2024-09-24 01:09:59] [D] 0x1050386f0 socks5 session tcp destruct [2024-09-24 01:09:59] [D] 0x1050386f0 socks5 client tcp destruct [2024-09-24 01:09:59] [D] 0x1050386f0 socks5 client destruct [2024-09-24 01:09:59] [D] 0x1050386f0 socks5 destruct [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client connect server fd 175 [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client handshake standard [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client write auth methods [2024-09-24 01:09:59] [D] 0x10b6115f0 socks5 client read auth method [2024-09-24 01:09:59] [D] 0x105149510 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x105149510 socks5 session udp splice [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149510 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149430 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x105149430 socks5 session udp splice [2024-09-24 01:09:59] [D] 0x105149430 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149430 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149430 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105149430 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105148b70 socks5 session udp bind [2024-09-24 01:09:59] [D] 0x105148b70 socks5 session udp splice [2024-09-24 01:09:59] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:09:59] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148b70 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148a90 socks5 session udp bind [2024-09-24 01:10:00] [D] 0x105148a90 socks5 session udp splice [2024-09-24 01:10:00] [D] 0x105148a90 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148a90 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148a90 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x105148a90 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 session udp bind [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 session udp splice [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514bf10 socks5 udp sendto [2024-09-24 01:10:00] [D] 0x10514be30 socks5 udp recvfrom udp [2024-09-24 01:10:04] [D] 0x10514b730 socks5 session udp bind [2024-09-24 01:10:06] [D] 0x10514b730 socks5 session udp splice [2024-09-24 01:10:07] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b730 socks5 udp sendto [2024-09-24 01:10:11] [D] 0x10514b810 socks5 session udp bind [2024-09-24 01:10:11] [D] 0x10514b810 socks5 session udp splice [2024-09-24 01:10:15] [D] 0x10514b810 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10514b810 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10514b810 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10514b810 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 session udp bind [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 session udp splice [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610c50 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 session udp bind [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 session udp splice [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x10b610d30 socks5 udp sendto [2024-09-24 01:10:15] [D] 0x1051496d0 socks5 client write request [2024-09-24 01:10:15] [D] 0x1051496d0 socks5 client read response [2024-09-24 01:10:16] [D] 0x10b610e10 socks5 client write request [2024-09-24 01:10:16] [D] 0x10b610e10 socks5 client read response [2024-09-24 01:10:16] [D] 0x10b610ef0 socks5 client write request [2024-09-24 01:10:16] [D] 0x10b610ef0 socks5 client read response [2024-09-24 01:10:16] [D] 0x10b610fd0 socks5 client write request [2024-09-24 01:10:16] [D] 0x10b610fd0 socks5 client read response [2024-09-24 01:10:16] [D] 0x10b6110b0 socks5 client write request [2024-09-24 01:10:16] [D] 0x10b6110b0 socks5 client read response [2024-09-24 01:10:16] [D] 0x10b611190 socks5 client write request [2024-09-24 01:10:19] [D] 0x10b611190 socks5 client read response [2024-09-24 01:10:19] [D] 0x10b611270 socks5 client write request [2024-09-24 01:10:19] [D] 0x10b611270 socks5 client read response [2024-09-24 01:10:19] [D] 0x10b611350 socks5 client write request [2024-09-24 01:10:19] [D] 0x10b611350 socks5 client read response [2024-09-24 01:10:19] [D] 0x105149890 socks5 construct [2024-09-24 01:10:19] [D] 0x105149890 socks5 client construct [2024-09-24 01:10:19] [I] 0x105149890 socks5 client udp construct [2024-09-24 01:10:19] [D] 0x105149890 socks5 session udp construct [2024-09-24 01:10:19] [D] 0x105149890 socks5 session udp new [2024-09-24 01:10:19] [D] 0x1051495f0 socks5 construct [2024-09-24 01:10:19] [D] 0x1051495f0 socks5 client construct [2024-09-24 01:10:19] [I] 0x1051495f0 socks5 client udp construct [2024-09-24 01:10:19] [D] 0x1051495f0 socks5 session udp construct [2024-09-24 01:10:19] [D] 0x1051495f0 socks5 session udp new [2024-09-24 01:10:19] [D] 0x1051497b0 socks5 construct [2024-09-24 01:10:19] [D] 0x1051497b0 socks5 client construct [2024-09-24 01:10:19] [I] 0x1051497b0 socks5 client udp construct [2024-09-24 01:10:19] [D] 0x1051497b0 socks5 session udp construct [2024-09-24 01:10:19] [D] 0x1051497b0 socks5 session udp new [2024-09-24 01:10:19] [D] 0x10b6116d0 socks5 construct [2024-09-24 01:10:19] [D] 0x10b6116d0 socks5 client construct [2024-09-24 01:10:19] [I] 0x10b6116d0 socks5 client udp construct [2024-09-24 01:10:19] [D] 0x10b6116d0 socks5 session udp construct [2024-09-24 01:10:19] [D] 0x10b6116d0 socks5 session udp new [2024-09-24 01:10:19] [D] 0x10b6117b0 socks5 construct [2024-09-24 01:10:19] [D] 0x10b6117b0 socks5 client construct [2024-09-24 01:10:19] [I] 0x10b6117b0 socks5 client udp construct [2024-09-24 01:10:19] [D] 0x10b6117b0 socks5 session udp construct [2024-09-24 01:10:19] [D] 0x10b6117b0 socks5 session udp new [2024-09-24 01:10:19] [D] 0x10b611430 socks5 client write request [2024-09-24 01:10:19] [D] 0x10b611430 socks5 client read response [2024-09-24 01:10:19] [D] 0x10b611510 socks5 client write request [2024-09-24 01:10:19] [D] 0x10b611510 socks5 client read response [2024-09-24 01:10:19] [I] 0x105149970 io timeout [2024-09-24 01:10:19] [E] 0x105149970 socks5 client read auth [2024-09-24 01:10:19] [E] 0x105149970 socks5 session handshake [2024-09-24 01:10:19] [D] 0x105149970 socks5 session udp destruct [2024-09-24 01:10:19] [D] 0x105149970 socks5 client udp destruct [2024-09-24 01:10:19] [D] 0x105149970 socks5 client destruct [2024-09-24 01:10:19] [D] 0x105149970 socks5 destruct [2024-09-24 01:10:19] [D] 0x105149510 socks5 udp recvfrom udp [2024-09-24 01:10:21] [D] 0x10b6115f0 socks5 client write request [2024-09-24 01:10:22] [D] 0x10b6115f0 socks5 client read response [2024-09-24 01:10:28] [D] 0x105149430 socks5 udp recvfrom udp [2024-09-24 01:10:35] [D] 0x105149430 socks5 udp sendto [2024-09-24 01:10:37] [D] 0x105148b70 socks5 udp recvfrom udp [2024-09-24 01:10:40] [D] 0x105148a90 socks5 udp recvfrom udp [2024-09-24 01:10:43] [D] 0x105148a90 socks5 udp sendto [2024-09-24 01:10:44] [D] 0x10514bf10 socks5 udp recvfrom udp [2024-09-24 01:10:44] [D] 0x10514b730 socks5 udp recvfrom udp [2024-09-24 01:10:45] [D] 0x10514b810 socks5 udp recvfrom udp [2024-09-24 01:10:48] [D] 0x10514b810 socks5 udp sendto [2024-09-24 01:10:49] [D] 0x10b610c50 socks5 udp recvfrom udp [2024-09-24 01:10:50] [D] 0x10b610c50 socks5 udp sendto [2024-09-24 01:10:50] [D] 0x10b610d30 socks5 udp recvfrom udp [2024-09-24 01:10:52] [D] 0x10b610d30 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 session udp bind [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 session udp splice [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x1051496d0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 session udp bind [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 session udp splice [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610e10 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 session udp bind [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 session udp splice [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610ef0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610fd0 socks5 session udp bind [2024-09-24 01:10:52] [D] 0x10b610fd0 socks5 session udp splice [2024-09-24 01:10:52] [D] 0x10b610fd0 socks5 udp sendto [2024-09-24 01:10:52] [D] 0x10b610fd0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b610fd0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b610fd0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b610fd0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 session udp bind [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 session udp splice [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b6110b0 socks5 udp sendto [2024-09-24 01:10:54] [D] 0x10b611190 socks5 session udp bind [2024-09-24 01:10:56] [D] 0x10b611190 socks5 session udp splice [2024-09-24 01:10:56] [D] 0x10b611190 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611190 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611190 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611190 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611190 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611270 socks5 session udp bind [2024-09-24 01:10:56] [D] 0x10b611270 socks5 session udp splice [2024-09-24 01:10:56] [D] 0x10b611270 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611270 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611270 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611270 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611270 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611350 socks5 session udp bind [2024-09-24 01:10:56] [D] 0x10b611350 socks5 session udp splice [2024-09-24 01:10:56] [D] 0x10b611350 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611350 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611350 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611350 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x10b611350 socks5 udp sendto [2024-09-24 01:10:56] [D] 0x105149890 socks5 session run [2024-09-24 01:10:56] [D] 0x105149890 socks5 client connect [::1]:10864 [2024-09-24 01:10:56] [D] 0x105149890 socks5 client connect server [2024-09-24 01:10:56] [D] 0x105149890 socks5 session udp bind [2024-09-24 01:10:56] [I] 0x10b610b70 io timeout [2024-09-24 01:10:56] [I] 0x10b610390 io timeout [2024-09-24 01:10:59] [I] 0x10b610470 io timeout [2024-09-24 01:11:00] [I] 0x10514be30 io timeout [2024-09-24 01:11:10] [I] 0x105148c50 io timeout [2024-09-24 01:11:10] [E] 0x105148c50 socks5 client read auth [2024-09-24 01:11:10] [E] 0x105148c50 socks5 session handshake [2024-09-24 01:11:10] [D] 0x105148c50 socks5 session udp destruct [2024-09-24 01:11:10] [D] 0x105148c50 socks5 client udp destruct [2024-09-24 01:11:10] [D] 0x105148c50 socks5 client destruct [2024-09-24 01:11:10] [D] 0x105148c50 socks5 destruct [2024-09-24 01:11:10] [I] 0x105148d30 io timeout [2024-09-24 01:11:10] [E] 0x105148d30 socks5 client read auth [2024-09-24 01:11:10] [E] 0x105148d30 socks5 session handshake [2024-09-24 01:11:10] [D] 0x105148d30 socks5 session udp destruct [2024-09-24 01:11:10] [D] 0x105148d30 socks5 client udp destruct [2024-09-24 01:11:10] [D] 0x105148d30 socks5 client destruct [2024-09-24 01:11:10] [D] 0x105148d30 socks5 destruct [2024-09-24 01:11:10] [D] 0x1051495f0 socks5 session run [2024-09-24 01:11:10] [D] 0x1051495f0 socks5 client connect [::1]:10864 [2024-09-24 01:11:10] [D] 0x1051495f0 socks5 client connect server [2024-09-24 01:11:10] [D] 0x1051495f0 socks5 session udp bind [2024-09-24 01:11:11] [D] 0x1051497b0 socks5 session run [2024-09-24 01:11:14] [D] 0x1051497b0 socks5 client connect [::1]:10864 [2024-09-24 01:11:14] [D] 0x1051497b0 socks5 client connect server [2024-09-24 01:11:14] [D] 0x1051497b0 socks5 session udp bind [2024-09-24 01:11:14] [D] 0x10b6116d0 socks5 session run [2024-09-24 01:11:14] [D] 0x10b6116d0 socks5 client connect [::1]:10864 [2024-09-24 01:11:14] [D] 0x10b6116d0 socks5 client connect server [2024-09-24 01:11:14] [D] 0x10b6116d0 socks5 session udp bind [2024-09-24 01:11:14] [I] 0x1051481d0 io timeout [2024-09-24 01:11:14] [E] 0x1051481d0 socks5 client read auth [2024-09-24 01:11:14] [E] 0x1051481d0 socks5 session handshake [2024-09-24 01:11:14] [D] 0x1051481d0 socks5 session udp destruct [2024-09-24 01:11:17] [D] 0x1051481d0 socks5 client udp destruct [2024-09-24 01:11:17] [D] 0x1051481d0 socks5 client destruct [2024-09-24 01:11:17] [D] 0x1051481d0 socks5 destruct [2024-09-24 01:11:17] [I] 0x10514a770 io timeout [2024-09-24 01:11:17] [E] 0x10514a770 socks5 client read auth [2024-09-24 01:11:17] [E] 0x10514a770 socks5 session handshake [2024-09-24 01:11:17] [D] 0x10514a770 socks5 session udp destruct [2024-09-24 01:11:17] [D] 0x10514a770 socks5 client udp destruct [2024-09-24 01:11:17] [D] 0x10514a770 socks5 client destruct [2024-09-24 01:11:17] [D] 0x10514a770 socks5 destruct [2024-09-24 01:11:18] [I] 0x10514a850 io timeout [2024-09-24 01:11:18] [E] 0x10514a850 socks5 client read auth [2024-09-24 01:11:18] [E] 0x10514a850 socks5 session handshake [2024-09-24 01:11:18] [D] 0x10514a850 socks5 session udp destruct [2024-09-24 01:11:18] [D] 0x10514a850 socks5 client udp destruct [2024-09-24 01:11:18] [D] 0x10514a850 socks5 client destruct [2024-09-24 01:11:18] [D] 0x10514a850 socks5 destruct [2024-09-24 01:11:19] [D] 0x10b6117b0 socks5 session run [2024-09-24 01:11:19] [D] 0x10b6117b0 socks5 client connect [::1]:10864 [2024-09-24 01:11:19] [D] 0x10b6117b0 socks5 client connect server [2024-09-24 01:11:19] [D] 0x10b6117b0 socks5 session udp bind [2024-09-24 01:11:19] [D] 0x10514a850 socks5 construct [2024-09-24 01:11:19] [D] 0x10514a850 socks5 client construct [2024-09-24 01:11:19] [I] 0x10514a850 socks5 client udp construct [2024-09-24 01:11:19] [D] 0x10514a850 socks5 session udp construct [2024-09-24 01:11:19] [D] 0x10514a850 socks5 session udp new [2024-09-24 01:11:19] [D] 0x10514a770 socks5 construct [2024-09-24 01:11:19] [D] 0x10514a770 socks5 client construct [2024-09-24 01:11:19] [I] 0x10514a770 socks5 client udp construct [2024-09-24 01:11:19] [D] 0x10514a770 socks5 session udp construct [2024-09-24 01:11:19] [D] 0x10514a770 socks5 session udp new [2024-09-24 01:11:19] [D] 0x1051481d0 socks5 construct [2024-09-24 01:11:19] [D] 0x1051481d0 socks5 client construct [2024-09-24 01:11:19] [I] 0x1051481d0 socks5 client udp construct [2024-09-24 01:11:19] [D] 0x1051481d0 socks5 session udp construct [2024-09-24 01:11:19] [D] 0x1051481d0 socks5 session udp new [2024-09-24 01:11:19] [D] 0x105148d30 socks5 construct [2024-09-24 01:11:19] [D] 0x105148d30 socks5 client construct [2024-09-24 01:11:19] [I] 0x105148d30 socks5 client udp construct [2024-09-24 01:11:19] [D] 0x105148d30 socks5 session udp construct [2024-09-24 01:11:19] [D] 0x105148d30 socks5 session udp new [2024-09-24 01:11:19] [D] 0x105148c50 socks5 construct [2024-09-24 01:11:19] [D] 0x105148c50 socks5 client construct [2024-09-24 01:11:19] [I] 0x105148c50 socks5 client udp construct [2024-09-24 01:11:19] [D] 0x105148c50 socks5 session udp construct [2024-09-24 01:11:19] [D] 0x105148c50 socks5 session udp new [2024-09-24 01:11:21] [D] 0x105149970 socks5 construct [2024-09-24 01:11:24] [D] 0x105149970 socks5 client construct [2024-09-24 01:11:24] [I] 0x105149970 socks5 client udp construct [2024-09-24 01:11:24] [D] 0x105149970 socks5 session udp construct [2024-09-24 01:11:24] [D] 0x105149970 socks5 session udp new [2024-09-24 01:11:34] [D] 0x10b611890 socks5 construct [2024-09-24 01:11:34] [D] 0x10b611890 socks5 client construct [2024-09-24 01:11:34] [I] 0x10b611890 socks5 client udp construct [2024-09-24 01:11:34] [D] 0x10b611890 socks5 session udp construct [2024-09-24 01:11:34] [D] 0x10b611890 socks5 session udp new [2024-09-24 01:11:36] [D] 0x10b611970 socks5 construct [2024-09-24 01:11:36] [D] 0x10b611970 socks5 client construct [2024-09-24 01:11:36] [I] 0x10b611970 socks5 client udp construct [2024-09-24 01:11:36] [D] 0x10b611970 socks5 session udp construct [2024-09-24 01:11:36] [D] 0x10b611970 socks5 session udp new
tunnel: mtu: 8500 socks5: port: 10864 address: ::1 udp: 'udp' misc: task-stack-size: 20480 connect-timeout: 5000 read-write-timeout: 60000 log-file: stderr log-level: debug limit-nofile: 65535
``` { "inbounds" : [ { "protocol" : "socks", "listen" : "[::1]", "port" : 10864, "settings" : { "udp" : true } } ], "outbounds" : [ { "protocol" : "vless", "settings" : { "vnext" : [ { "address" : "war1.vpntype.com", "users" : [ { "id" : "9bb8cbce-8f1b-4eba-8000-6706806460eb", "flow" : "xtls-rprx-vision", "encryption" : "none" } ], "port" : 443 } ] }, "streamSettings" : { "network" : "tcp", "tlsSettings" : { "alpn" : [ "h2", "http/1.1" ], "fingerprint" : "chrome" }, "security" : "tls" } } ] } ```
2024/09/23 23:09:34 [Warning] [3924108419] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00"
2024/09/23 23:09:34 [Warning] [2401454831] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00"
2024/09/23 23:09:34 [Warning] [3850670086] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00"
2024/09/23 23:09:34 [Warning] [573919059] app/proxyman/inbound: connection ends > proxy/http: failed to read http request > malformed HTTP request "\x00"
this is your xray log, although in your config I see a socks5 inbound, this is indicating that your inbound is an HTTP proxy.
I'm sorry, but I'm not entirely clear on what I need to do to fix this?
I started working with Xray-core quite recently)
I built outbounds using LibXrayConvertShareLinksToXrayJson
inbounds by default
"inbounds" : [ { "protocol" : "socks", "listen" : "[::1]", "port" : 10864, "settings" : { "udp" : true } } ]
The built config runs without problems in the Mango project with XrayKit
And I can't figure out what I need to change to make everything work with LibXray.
I will be very grateful if you can help and explain where I made a mistake and what I need to fix.
I tried to launch with
"inbounds" : [ { "protocol" : "http", "tag" : "httpinbound", "settings" : { "timeout" : 60 }, "port" : 10864, "listen" : "127.0.0.1" } ]
But it didn't help so much.
vless://9bb8cbce-8f1b-4eba-8000-6706806460eb@war1.vpntype.com:443?security=tls&encryption=none&alpn=h2,http/1.1&headerType=none&fp=chrome&type=tcp&flow=xtls-rprx-vision#Warsaw
Well it could be due to your DNS settings and stuff like that. import your link into "FoXray", then start the VPN. After that, you can go to settings and look at the full config. then just replace the outbound with the tag "proxy"
I tried it through FoXray
After connecting, nothing loads either, unfortunately.
I checked the URL in V2BOX/Streisand/v2RayTun
Everything works successfully in them. However, each of them has a different configuration and none of them also works in my application
``` { "dns" : { "queryStrategy" : "UseIP", "servers" : [ { "address" : "8.8.8.8" } ], "tag" : "dnsQuery" }, "inbounds" : [ { "listen" : "[::1]", "port" : 55716, "protocol" : "socks", "settings" : { "auth" : "noauth", "udp" : true }, "sniffing" : { "destOverride" : [ "http", "tls", "quic" ], "domainsExcluded" : [ "courier.push.apple.com" ], "enabled" : true }, "tag" : "socksIn" } ], "log" : { "access" : "/private/var/mobile/Containers/Shared/AppGroup/4D16EFB8-F5D2-49EE-ADFA-FDC995C866CF/access.log", "dnsLog" : false, "error" : "/private/var/mobile/Containers/Shared/AppGroup/4D16EFB8-F5D2-49EE-ADFA-FDC995C866CF/error.log", "loglevel" : "none" }, "outbounds" : [ { "protocol" : "vless", "settings" : { "vnext" : [ { "address" : "war1.vpntype.com", "port" : 443, "users" : [ { "encryption" : "none", "flow" : "xtls-rprx-vision", "id" : "9bb8cbce-8f1b-4eba-8000-6706806460eb" } ] } ] }, "streamSettings" : { "network" : "tcp", "security" : "tls", "sockopt" : { }, "tlsSettings" : { "fingerprint" : "chrome" } }, "tag" : "proxy" }, { "protocol" : "freedom", "tag" : "direct" }, { "protocol" : "blackhole", "tag" : "reject" }, { "protocol" : "dns", "settings" : { "address" : "8.8.8.8", "nonIPQuery" : "skip" }, "streamSettings" : { "sockopt" : { "dialerProxy" : "proxy" } }, "tag" : "dnsOut" } ], "routing" : { "rules" : [ { "inboundTag" : [ "dnsQuery" ], "outboundTag" : "proxy", "type" : "field" }, { "outboundTag" : "dnsOut", "port" : "53", "type" : "field" } ] } } ```
``` { "log": {}, "inbounds": [ { "sniffing": { "domainsExcluded": [ "courier.push.apple.com" ], "enabled": true, "destOverride": [ "tls", "http", "quic" ] }, "port": 54050, "listen": "127.0.0.1", "protocol": "shadowsocks", "settings": { "udp": false, "level": 8, "ota": true, "password": "123456", "method": "chacha20-ietf-poly1305", "network": "tcp,udp" }, "tag": "socks5" }, { "settings": { "udp": true, "auth": "noauth", "userLevel": 8 }, "listen": "127.0.0.1", "tag": "directSocks", "port": 1087, "protocol": "socks" }, { "settings": { "address": "[::1]" }, "listen": "[::1]", "tag": "api", "port": 54051, "protocol": "dokodemo-door" }, { "port": 54052, "listen": "127.0.0.1", "protocol": "dokodemo-door", "settings": { "network": "tcp,udp", "timeout": 10, "userLevel": 0, "port": 53, "address": "8.8.8.8" }, "tag": "inDns" } ], "outbounds": [ { "streamSettings": { "security": "tls", "tcpSettings": { "header": { "type": "none" } }, "network": "tcp", "tlsSettings": { "fingerprint": "chrome", "allowInsecure": false, "alpn": [ "h2", "http/1.1" ] } }, "tag": "proxy", "mux": { "concurrency": 50, "xudpConcurrency": 128, "xudpProxyUDP443": "allow", "enabled": false }, "protocol": "vless", "settings": { "vnext": [ { "port": 443, "users": [ { "flow": "xtls-rprx-vision", "email": "", "encryption": "none", "id": "9bb8cbce-8f1b-4eba-8000-6706806460eb", "level": 8 } ], "address": "war1.vpntype.com" } ] } }, { "tag": "fragment", "protocol": "freedom", "streamSettings": { "sockopt": { "tcpNoDelay": true } }, "settings": { "fragment": { "length": "80-250", "interval": "10-100", "packets": "tlshello" }, "userLevel": 8 } } ], "api": { "tag": "api", "services": [ "StatsService" ] }, "dns": { "disableFallbackIfMatch": true, "tag": "dnsQuery", "queryStrategy": "UseIP", "disableFallback": true, "disableCache": true, "servers": [ { "address": "8.8.8.8", "skipFallback": false } ] }, "stats": {}, "routing": { "rules": [ { "outboundTag": "api", "inboundTag": [ "api" ], "type": "field" }, { "outboundTag": "outDns", "inboundTag": [ "inDns" ], "type": "field" }, { "outboundTag": "proxy", "inboundTag": [ "dnsQuery" ], "type": "field" }, { "outboundTag": "direct", "inboundTag": [ "directSocks" ], "type": "field" } ], "domainStrategy": "AsIs", "balancers": [] }, "policy": { "system": { "statsOutboundDownlink": true, "statsInboundDownlink": true, "statsOutboundUplink": true, "statsInboundUplink": true }, "levels": { "8": { "bufferSize": 0, "handshake": 4, "statsUserDownlink": false, "downlinkOnly": 1, "connIdle": 30, "uplinkOnly": 1, "statsUserUplink": false } } }, "transport": {} } ```
``` { "dns" : { "id" : "B1EFC311-3E87-4032-B2C9-7D25989BDD0D", "queryStrategy" : "UseIP", "disableFallbackIfMatch" : false, "tag" : "dns-in", "disableCache" : false, "servers" : null, "disableFallback" : false, "clientIp" : null, "hosts" : null }, "id" : "D5046FB3-2D2F-4C39-AF1B-0E296519A655", "inbounds" : [ { "settings" : { "timeout" : 60 }, "sniffing" : { "enabled" : true, "destOverride" : [ "http", "tls", "quic" ] }, "port" : 1082, "tag" : "httpinbound", "protocol" : "http", "listen" : "127.0.0.1" } ], "policy" : { "levels" : { "0" : { "statsUserDownlink" : false, "statsUserUplink" : false, "downlinkOnly" : 1, "uplinkOnly" : 1, "connIdle" : 30, "handshake" : 4, "bufferSize" : 0 } }, "system" : { "statsOutboundUplink" : true, "statsInboundUplink" : true, "statsInboundDownlink" : true, "statsOutboundDownlink" : true } }, "log" : { "loglevel" : "info" }, "outbounds" : [ { "streamSettings" : { "security" : "tls", "tcpSettings" : { "header" : { "type" : "none" } }, "tlsSettings" : { "alpn" : [ "http\/1.1", "h2" ], "fingerprint" : "chrome", "allowInsecure" : false, "serverName" : "war1.vpntype.com" }, "network" : "tcp" }, "tag" : "proxy", "protocol" : "vless", "mux" : { "concurrency" : 50, "enabled" : false }, "settings" : { "vnext" : [ { "users" : [ { "id" : "9bb8cbce-8f1b-4eba-8000-6706806460eb", "flow" : "xtls-rprx-vision", "encryption" : "none" } ], "address" : "war1.vpntype.com", "port" : 443 } ] } }, { "tag" : "blackhole", "settings" : { "response" : { "type" : "none" } }, "protocol" : "blackhole" }, { "tag" : "freedom", "protocol" : "freedom", "settings" : { "domainStrategy" : "AsIs", "userLevel" : 0 } } ], "stats" : { } } ```
``` { "inbounds" : [ { "listen" : "127.0.0.1", "port" : 1080, "protocol" : "socks", "settings" : { "auth" : "noauth", "udp" : true }, "sniffing" : { "destOverride" : [ "http", "tls", "quic", "fakedns" ], "enabled" : false, "routeOnly" : true }, "tag" : "socks" } ], "outbounds" : [ { "protocol" : "vless", "settings" : { "vnext" : [ { "address" : "war1.vpntype.com", "port" : 443, "users" : [ { "encryption" : "none", "flow" : "xtls-rprx-vision", "id" : "9bb8cbce-8f1b-4eba-8000-6706806460eb" } ] } ] }, "streamSettings" : { "network" : "tcp", "security" : "tls", "tcpSettings" : { "header" : { "request" : { "headers" : { } }, "type" : "none" } }, "tlsSettings" : { "alpn" : [ "h2", "http\/1.1" ], "fingerprint" : "chrome" } }, "tag" : "proxy" }, { "protocol" : "freedom", "tag" : "direct" }, { "protocol" : "blackhole", "tag" : "block" } ] } ```
Hello. Please tell me how to make this library work with LibXray (1.8.24)
(maybe there are examples of settings)
I make my client, the socket rises and works LibXray also runs successfully and returns the success - true response
But at the same time, nothing loads, as if there is no Internet and everything goes into timeout
I tried to run the Mango project using the X ray Kit, and everything works successfully there. But as soon as I replace XrayKit with LibXray, everything stops working again
I used different configs, I tried everything. I also built the config through LibXray itself, but the result is always the same. Config Tun2Socks is standard from the repository, except for the port
If you may have encountered this or know what the reason may be, tell me, I will be grateful