當前位置:首頁 » 雲伺服器 » ip伺服器掃描

ip伺服器掃描

發布時間: 2022-01-09 21:26:02

1. 知道一個IP地址,如果掃描對應伺服器所開放的埠

IP埠掃描器可以對一個IP進行你想要掃描的埠進行掃描....

下載地址:

http://hack169.com/soft/softdown.asp?softid=138

經本人測試無毒可用.

2. 掃描IP代理伺服器

你用代理超人吧。 其實你那種情況是電腦被黑客留有後門木馬。 你把所有補丁打全了。 然後安裝個瑞星放火牆。就不會那麼容易被攻擊了。或者是在編程中輸入://===========================================================
// C# 實現埠掃描
//===========================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Sockets;

using System.Threading;

namespace ConsoleApplication3
{
class Program
{
//已掃描埠數目
internal static int scannedCount = 0;

internal static int runningThreadCount = 0;

internal static List <int> openedPorts = new List <int>();

static int startPort = 1;
static int endPort = 500;

static int maxThread = 100;

static void Main(string[] args)
{
//簡單提示
Console.WriteLine("////////////////////////////////////////////////////////////////////////////////////");
Console.WriteLine("// Writer;Feeling");
Console.WriteLine("////////////////////////////////////////////////////////////////////////////////////");
Console.WriteLine("請輸入要掃描的主機;");
string host = Console.ReadLine();
Console.WriteLine("請輸入掃描的埠 例如:1-800");
string portRange =Console.ReadLine();
startPort = int.Parse(portRange.Split('-')[0].Trim());
endPort = int.Parse(portRange.Split('-')[1].Trim());

for (int port = startPort; port < endPort; port++)
{
Scanner scanner = new Scanner(host, port);
Thread thread = new Thread(new ThreadStart(scanner.Scan));
thread.Name = port.ToString();
thread.IsBackground = true;
thread.Start();

runningThreadCount++;
Thread.Sleep(10);

//循環,直到某個線程工作完畢才啟動另一新線程,也可以叫做推拉窗技術
while (runningThreadCount >= maxThread) ;
}
//空循環,直到所有埠掃描完畢
while (scannedCount + 1 < (endPort - startPort)) ;
Console.WriteLine();
Console.WriteLine();

//輸出結果
Console.WriteLine("Scan for host:{0} has been completed, \n total {1} ports scanned, \n opened ports:{2}", host, (endPort - startPort), openedPorts.Count);

foreach (int port in openedPorts)
{
Console.WriteLine("\tport: {0} is open", port.ToString().PadLeft(6));
}

Console.ReadLine();

}
}

class Scanner
{
string m_host;
int m_port;

public Scanner(string host, int port)
{
m_host = host;
m_port = port;
}
public void Scan()
{
TcpClient tc = new TcpClient();
tc.SendTimeout = tc.ReceiveTimeout = 2000;

try
{
tc.Connect(m_host, m_port);
if (tc.Connected)
{
Console.WriteLine("Port {0} is Open", m_port.ToString().PadRight(6));
Program.openedPorts.Add(m_port);
}
}
catch
{
Console.WriteLine("Port {0} is Closed", m_port.ToString().PadRight(6));
}
finally
{
tc.Close();
tc = null;
Program.scannedCount++;
Program.runningThreadCount--;
}
}

}
}

3. 掃描埠IP用的伺服器多少錢有沒有提供商 已解決!

1M 帶寬掃雞不夠用啊!

4. 如何掃描指定ip的伺服器埠

在WIN系統下,可以用X-SCAN進行掃描軟體。如果在LINUX系統下就用NMAP掃描。

成都優創信安,專注於網路安全評估、網站安全檢測、安全應急響應。

5. 掃描儀設置好了IP地址但是找不到伺服器,之前還能掃描到的

一般情況看一下共享文件夾是不是變成不共享的模式了,將共享文件夾重新設置成共享文件夾,問題就解決了。

6. 伺服器IP的被人掃描

防火牆.拒絕垃圾信息.搜索下自身的漏洞.打上補丁.把不用的埠給封上了.別什麼都開.還有伺服器上別安裝類似QQ啊.MSN之類的通信軟體..會被人用上的..

7. 伺服器怎麼掃ip

輸入埠。提取ip段。可以的話就採納下

8. 我的伺服器用任何的掃描都掃不出IP來!

首先你要看看你的伺服器是不是裝了什麼殺毒軟體,禁示外網的連接和PING或是掃描之類的.這是為了安全.
還有就是看看遠程連接的埠是不是關閉了.

9. 怎麼在租來的伺服器上掃IP 要詳細具體 需要什麼軟體說具體,租來的伺服器怎麼和自己的電腦連接

你租用伺服器後,直接用遠程桌面登錄就可以。登錄是填上IP地址和密碼就可以

10. 有了伺服器怎麼掃IP

用流光的掃描,你掃自已做什麼?

熱點內容
gon引擎自動回收腳本 發布:2024-09-20 05:39:39 瀏覽:246
好醫生連鎖店密碼多少 發布:2024-09-20 05:09:38 瀏覽:15
魔獸腳本代理 發布:2024-09-20 05:09:35 瀏覽:98
python登陸網頁 發布:2024-09-20 05:08:39 瀏覽:757
安卓qq飛車如何轉蘋果 發布:2024-09-20 04:54:30 瀏覽:178
存儲過程中in什麼意思 發布:2024-09-20 04:24:20 瀏覽:315
php顯示數據 發布:2024-09-20 03:48:38 瀏覽:501
源碼安裝軟體 發布:2024-09-20 03:44:31 瀏覽:354
入門編程游戲的書 發布:2024-09-20 03:31:26 瀏覽:236
e盒的演算法 發布:2024-09-20 03:30:52 瀏覽:144