当前位置:首页 » 云服务器 » 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

用流光的扫描,你扫自已做什么?

热点内容
网站搭建服务器搭建 发布:2025-03-16 10:33:27 浏览:795
游戏目录在哪里安卓 发布:2025-03-16 10:33:19 浏览:467
婉儿脚本 发布:2025-03-16 10:19:33 浏览:580
c语言ftp下载文件 发布:2025-03-16 10:05:02 浏览:307
手机帐户密码怎么找回密码 发布:2025-03-16 10:02:10 浏览:706
c语言位段的使用 发布:2025-03-16 10:00:38 浏览:572
象山编程 发布:2025-03-16 09:38:41 浏览:927
绿点掌知识薪资密码是多少 发布:2025-03-16 09:37:05 浏览:597
osu安卓版怎么 发布:2025-03-16 09:37:05 浏览:153
python编程编程第三版 发布:2025-03-16 09:29:56 浏览:968