当前位置:首页 » 代理许可 » 代理扫描

代理扫描

发布时间: 2020-11-20 15:37:37

Ⅰ 求一份易语言的代理IP扫描源码

给我需要扫描的ip地址啊

不就是写一个ip地址测试能不能连接上的软件么 编辑2的内容就是ping值... 简单是简单了点

Ⅱ 代理猎手扫描IP段

可能是你使用方法的错误导致你的问题 介绍具体的使用方法你到这里学习下,要注册一下。。。
http://bbs.proxycn.com/thread.php?fid=56
其实你不必自己搜索代理,只需使用别人寻找到的代理就行了,这里代理就很多。然后用代理猎手验证,选择速度快的使用就行了
http://bbs.proxycn.com/thread.php?fid=17

其他的每日代理更新
http://tt.qnr.cn/ip/
http://www.egogoo.com/proxy/proxy.asp

Ⅲ 怎麼才能扫描出内网有代理软件的电脑

用扫描软件,扫某IP段内开了端口(代理)的机子.
ProxyHunter 这个软件就可以

Ⅳ 扫描代理IP一般用什么端口好啊

8080
80端口是上网的端口.所以搜这个应该有效

Ⅳ 如何扫描局域网内的代理服务器

在WFilter上网行为管理软件的“插件管理”里面,下载“代理服务器扫描插件”,运行就可以扫描局域网内的代理服务器。

Ⅵ 统一扫描控件服务代理1.0004在哪个文件夹里,怎么删除掉

分析 的System Volume Information文件“的System Volume Information”文件夹是一个隐藏的系统文件夹中的“系统还原”工具使用该文件夹来存储它的信息和还原点。您的计算机上的每个分区上都有一个System Volume Information文件夹。

Ⅶ 如何实现代理的扫描

代理服务器就是一个跳板,要不显示的都是你的地址了,容易找到啊
好久没写东西,工作太忙,人也懒了点,无聊之中,随便学点东西,一个简单的端口扫描,可以试着改进 :

//===========================================================
// 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--;
}
}

}
}

Ⅷ 怎么使用s扫描器扫描IP找到可以设置为代理的IP呢

怎么不扫啊! 知道的告诉下!我是湖南的! 关闭你的防火墙,或者打开相应端口。如果你是局域网请试着扫描直接ip或者使用代理跳跃过代理服务器

Ⅸ 为什么全国总代理是广州紫薇发展有限公司,可扫描是由美有限公司呢

全国总代理是广州紫微发展有限公司,可扫描是由美有限公司两个公司可能是有关系呗,就是相关联的一个公司来

Ⅹ 怎么扫描能代理的IP

个人觉的下面这个瞒好的
可以用局域网聊天工具:絮语
http://www.pconline.com.cn/pce/softnews/cs/0401/269523.html
还有很多局域网聊天工具,如网络信使等,各大下载网站的网络聊天分类中都有相关软件,你可以去看看,选择一款喜欢的使用。

热点内容
美发店认证 发布:2021-03-16 21:43:38 浏览:443
物业纠纷原因 发布:2021-03-16 21:42:46 浏览:474
全国著名不孕不育医院 发布:2021-03-16 21:42:24 浏览:679
知名明星确诊 发布:2021-03-16 21:42:04 浏览:14
ipad大专有用吗 发布:2021-03-16 21:40:58 浏览:670
公务员协议班值得吗 发布:2021-03-16 21:40:00 浏览:21
知名书店品牌 发布:2021-03-16 21:39:09 浏览:949
q雷授权码在哪里买 发布:2021-03-16 21:38:44 浏览:852
图书天猫转让 发布:2021-03-16 21:38:26 浏览:707
宝宝水杯品牌 发布:2021-03-16 21:35:56 浏览:837