Falcon
Yönetici
Kod:
using System;
using System.Net.Sockets;
class Program
{
static void Main()
{
string host = "127.0.0.1";
for (int port = 1; port <= 100; port++)
{
try
{
TcpClient client = new TcpClient();
client.Connect(host, port);
Console.WriteLine("Açık Port: " + port);
client.Close();
}
catch
{
// kapalı
}
}
}
}