1
我想知道如何得到URL目的地像Sniffer/Wireshark/Proxifier
確實在VB.net從另一個應用程序獲取目標網址VB.net
因此,應用程序檢測從Windows上運行的所有應用程序的所有目標網址,並將其輸出到列表框上VB.net
我想知道如何得到URL目的地像Sniffer/Wireshark/Proxifier
確實在VB.net從另一個應用程序獲取目標網址VB.net
因此,應用程序檢測從Windows上運行的所有應用程序的所有目標網址,並將其輸出到列表框上VB.net
您可以使用System.Net.NetworkInformation.IPGlobalProperties
對象檢索所有現有連接:
Private Sub list_active_connections()
Dim _IPGlobalProperties As System.Net.NetworkInformation.IPGlobalProperties = System.Net.NetworkInformation.IPGlobalProperties.GetIPGlobalProperties()
For Each conn As System.Net.NetworkInformation.TcpConnectionInformation In _IPGlobalProperties.GetActiveTcpConnections
ListBox1.Items.Add(conn.RemoteEndPoint.ToString)
Next
End Sub
感謝您的解決:d。但如何獲得域的IP目的地如果可用:D – faisalakbar 2014-11-05 05:18:25
@faisalakbar你可以嘗試'Dns.GetHostEntry'(參見[this](http://stackoverflow.com/questions/3252845/how-to-get-域名從給定ip-in-c)回答) – Andrea 2014-11-05 07:41:58
感謝您的解答:D – faisalakbar 2014-11-06 09:18:26