1

我在 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]
4

2 回答 2

1

详细模式将写入到 stderr 的连接,您可以将 stderr 重定向到文件,详细日志有类似 connect to [xxx] from [xxxx]

尝试

nc -l -v -p 9103 -k 1> output 2>connect.log

并监控 connect.log 的连接性

如果您不使用 -k ,netcat 在第一次连接后退出。

于 2012-09-10T07:36:21.847 回答
1

如果您可以升级您的 netcat 副本:现代版本(1.10,一个)可以选择在连接时执行程序(或 shell 命令)。否则,您可以使 netcat 认为它在终端中运行(以禁用 stdout 的缓冲),例如使用script(它只是将 stdin/stdout/stderr 上的所有内容保存在给定文件中)。或使用screen和的日志记录功能tmux

于 2012-09-10T07:42:58.350 回答