網(wǎng)上追捕(很多實用的port)
發(fā)表時間:2023-08-11 來源:明輝站整理相關軟件相關文章人氣:
[摘要]豆腐制作 都是精品http://www.asp888.net 豆腐技術站 我們可以在Asp.Net中通過使用Sockets Class 來對InterNet 上的主機進行遠程的控制和探測(不要搞破壞...
豆腐制作 都是精品
http://www.asp888.net 豆腐技術站
我們可以在Asp.Net中通過使用Sockets Class 來對InterNet 上的主機進行遠程的控制和探測(不要搞破壞呀。
下面的例子中豆腐給大家提供一個例子,可以對 指定的主機進行 探測:)功能類似 追捕。
<%@ Import Namespace="System.Net" %>
<% @Import Namespace="System.Net.Sockets" %>
<%@ Import Namespace="System.IO" %>
<script language="C#" runat=server>
protected void Page_Load(Object Src, EventArgs E){
TCPClient tcpc = new TCPClient();
String host="host";
showmsg.Text=TcpConnect(tcpc,host,25); //SMTP 端口
/*
showmsg.Text=TcpConnect(tcpc,host,80); //WWW 端口
showmsg.Text=TcpConnect(tcpc,host,21); //FTP 端口
showmsg.Text=TcpConnect(tcpc,host,110); //Pop 端口
showmsg.Text=TcpConnect(tcpc,host,1080); //Socket5 端口 代理服務器使用的端口
showmsg.Text=TcpConnect(tcpc,host,53); //DNS 端口
*/
}
String TcpConnect(TCPClient tcpc,String host,int port){
StreamReader sr ;
String strRet="123";
if(0 == tcpc.Connect(host,port)){
//聯(lián)結服務器成功
sr = new StreamReader(tcpc.GetStream(), Encoding.Default);
strRet=sr.ReadLine();
}
return strRet;
}
</script>
<html>
<head>
<title>網(wǎng)絡追捕</title>
<link rel="stylesheet" type="text/css" href="/doufu.css">
</head>
<body>
<asp:Label id=showmsg runat=server />
</body>
</html>