C#實(shí)現(xiàn)同步模式下的端口映射程序
今天打算寫(xiě)一個(gè)FtpServer玩一下的,需要看看ftp軟件常用命令形式(完整實(shí)現(xiàn)所有ftp命令太麻煩),最開(kāi)始打算通過(guò)抓包看cuteftp是如何訪問(wèn)ftpserver的,但要把其中的命令保存下來(lái)還得一條條復(fù)制,太麻煩,便通過(guò)proxy模式寫(xiě)了一個(gè)代理程序,來(lái)獲取其交互的命令,寫(xiě)了一個(gè)簡(jiǎn)單的同步模式下的端口映射程序后,發(fā)現(xiàn)比常用的異步proxy要簡(jiǎn)單的多,便把這段代碼貼出來(lái),以備日后查詢(xún):
class Program
{
static void Main(string[] args)
{
TcpListener listener = new TcpListener(new IPEndPoint(IPAddress.Loopback, 8000));
listener.Start();
while (true)
{
var client = listener.AcceptTcpClient();
Console.WriteLine("connected");
var proxy = new TcpClient();
Console.WriteLine("remote connected");
proxy.Connect(new IPEndPoint(IPAddress.Loopback, 21));
new SyncProxy("client->remote",proxy.GetStream(), client.GetStream());
new SyncProxy("remote->client",client.GetStream(), proxy.GetStream());
}
}
}
class SyncProxy
{
NetworkStream read;
NetworkStream write;
string name;
public SyncProxy(string name, NetworkStream read,NetworkStream write)
{
this.name = name;
this.read = read;
this.write = write;
System.Threading.ThreadPool.QueueUserWorkItem(PipeStream);
}
void PipeStream(object state)
{
byte[] buffer = new byte[1500];
int count = 0;
while (true)
{
try
{
count = read.Read(buffer, 0, buffer.Length);
}
catch (Exception)
{
count = 0;
}
if (count == 0)
{
Console.WriteLine(name+" closed");
write.Close();
break;
}
Console.Write(name + ": "+ Encoding.Default.GetString(buffer, 0, count));
write.Write(buffer, 0, count);
}
}
}通過(guò)它獲取到的cuteFtp交互命令如下:
connected
remote connected
client->remote: 220 Serv-U FTP Server v6.0 for WinSock ready...
remote->client: USER 1
client->remote: 331 User name okay, need password.
remote->client: PASS 1
client->remote: 230 User logged in, proceed.
remote->client: PWD
client->remote: 257 "/" is current directory.
remote->client: FEAT
client->remote: 211-Extension supported
client->remote: CLNT
MDTM
MDTM YYYYMMDDHHMMSS[+-TZ];filename
SIZE
SITE PSWD;EXEC;SET;INDEX;ZONE;CHMOD;MSG
REST STREAM
XCRC filename;start;end
MODE Z
211 End
remote->client: REST 0
client->remote: 350 Restarting at 0. Send STORE or RETRIEVE.
remote->client: PASV
client->remote: 227 Entering Passive Mode (127,0,0,1,29,18)
remote->client: LIST
client->remote: 150 Opening ASCII mode data connection for /bin/ls.
client->remote: 226 Transfer complete.
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
C#通過(guò)GET/POST方式發(fā)送Http請(qǐng)求
本文主要介紹了C#實(shí)現(xiàn)http請(qǐng)求的兩種方式,get和post方式。文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-09-09
c# 實(shí)現(xiàn)RSA非對(duì)稱(chēng)加密算法
RSA解決了對(duì)稱(chēng)加密的一個(gè)不足,比如AES算法加密和解密時(shí)使用的是同一個(gè)秘鑰,因此這個(gè)秘鑰不能公開(kāi),因此對(duì)于需要公開(kāi)秘鑰的場(chǎng)合,我們需要在加密和解密過(guò)程中使用不同的秘鑰,加密使用的公鑰可以公開(kāi),解密使用的私鑰要保密,這就是非對(duì)稱(chēng)加密的好處?!?/div> 2021-06-06最新評(píng)論

