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

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

热点内容
实测华为编译器 发布:2024-09-19 23:50:52 浏览:820
linux汇总 发布:2024-09-19 23:46:39 浏览:452
阿里云服务器环境搭建教程 发布:2024-09-19 23:21:58 浏览:837
黄色文件夹图标 发布:2024-09-19 23:19:22 浏览:684
mysql数据库导出导入 发布:2024-09-19 23:00:47 浏览:183
lua脚本精灵 发布:2024-09-19 23:00:41 浏览:659
任务栏文件夹图标 发布:2024-09-19 22:54:25 浏览:101
解压来一波 发布:2024-09-19 22:46:36 浏览:933
mysqlpythonubuntu 发布:2024-09-19 22:46:27 浏览:501
服务器请求获取ip地址 发布:2024-09-19 22:33:25 浏览:515