gpt4 book ai didi

c# - netstat 重点(查找端口)

转载 作者:太空宇宙 更新时间:2023-11-03 18:29:49 31 4
gpt4 key购买 nike

我最近尝试执行以下行;

string strCmdText;
strCmdText = "netstat -np TCP | find " + quote + number + quote + "";
System.Diagnostics.Process.Start("netstat.exe", strCmdText);

Logs.Write("LISTEN_TO(" + Registry_val1.Text + ")", strCmdText);

现在要做的基本上是找到所有包含“80”的 TCP 端口,并将它们显示在我定制的日志系统中,这将在我的文件夹中创建一个名为的日志;

LISTEN_TO(80)-{date_time}.txt在此 .txt 中,它应该包含命令发出的文本,但是我得到的只是一个时间。

我如上所述调试了这个命令,不幸的是我所知道的是 CMDtext 设置正确,我的日志系统工作正常,让我别无选择,NETSTAT 可能会在查询启动后立即关闭?

希望我提供了足够的信息,因为这是我的第一篇文章。

问候,

公司

由于描述模糊,这是我尝试做的其他类型的相同代码,但仍然只得到一个时间。

const string quote = "\"";
Process p = new Process();
p.StartInfo.FileName = "cmd";
p.StartInfo.Arguments = "netstat -np TCP | find " + quote + number + quote + "";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.Start();

String output = p.StandardOutput.ReadToEnd();

Logs.Write("LISTEN_TO(" + Registry_val1.Text + ")", output);

基本上,您可以将其视为; textbox1.text = 输出; execpt 现在将输出放入日志文件。

最佳答案

我不明白你为什么首先使用 netstat。 .Net 框架有大量提供各种数据的类,在本例中为 IPGlobalProperties有您需要的方法。

var ip =  System.Net.NetworkInformation.IPGlobalProperties.GetIPGlobalProperties();

foreach(var tcp in ip.GetActiveTcpConnections()) // alternative: ip.GetActiveTcpListeners()
{
if (tcp.LocalEndPoint.Port == number
|| tcp.RemoteEndPoint.Port == number)
{
Logs.Write(
String.Format(
"{0} : {1}",
tcp.LocalEndPoint.Address,
tcp.RemoteEndPoint.Address));
}
}

使用内置类的好处是可以轻松塑造和选择您需要的任何内容,最重要的是:您可以为自己和您的用户节省进程外调用和输出解析。

关于c# - netstat 重点(查找端口),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24899948/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com