我在 linux 上使用 netcat 实用程序从 Windows 机器上的程序接收输出。我的问题是 Windows 机器上的程序并不总是给出输出。
如何检查是否已与 netcat 建立连接?
到目前为止我正在做的是“ nc -l -v 9103 > output
”然后我检查输出的大小,这带来的问题是netcat仅在达到某个缓冲区大小或遇到新行字符后才写入文件,所以在某些情况下即使已建立连接,文件大小被检测为零。
我如何检查是否有人与 netcat 建立了连接。
我尝试使用
nc -l -v -e someprog.exe 9103 > output
但我的 netcat 似乎不支持这个
以下是我的选择
$ nc -h
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
[-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
[-x proxy_address[:port]] [hostname] [port[s]]
Command Summary:
-4 Use IPv4
-6 Use IPv6
-D Enable the debug socket option
-d Detach from stdin
-h This help text
-i secs Delay interval for lines sent, ports scanned
-k Keep inbound sockets open for multiple connects
-l Listen mode, for inbound connects
-n Suppress name/port resolutions
-p port Specify local port for remote connects
-r Randomize remote ports
-s addr Local source address
-T ToS Set IP Type of Service
-C Send CRLF as line-ending
-t Answer TELNET negotiation
-U Use UNIX domain socket
-u UDP mode
-v Verbose
-w secs Timeout for connects and final net reads
-X proto Proxy protocol: "4", "5" (SOCKS) or "connect"
-x addr[:port] Specify proxy address and port
-z Zero-I/O mode [used for scanning]
Port numbers can be individual or ranges: lo-hi [inclusive]