Questions tagged «netcat»

2
使用Netcat发送简单的TCP消息
我正在尝试使用netcat通过TCP发送一条简单消息,例如,我想发送数字1。 所以我了解我在安装netcat之后在终端中写了以下内容 netcat [ip-address] [port] 但是,如何指定要发送的消息?即我在哪里写"1"?
37 netcat 


1
如何使用netcat建立简单的聊天?
我目前正在从事一个项目,并且已经使用这些netcat库实现了一个简单的聊天应用程序。 提示客户端输入端口号和命令 nc -l -p xxxx xxxx客户端输入的端口号在哪里。 同样,会提示主机输入相同的端口号,并使用以下命令建立连接 nc <ip_address> -p xxxx 但是,由于它不显示键入消息的人的用户名,因此提供了空白的聊天体验,例如 hey hello what's up Nothing 相反,我希望它像这样, Foo : hey Boo : hello Foo : what's up Boo : Nothing 我可以使用netcat该功能来实现此功能吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.