代理掃描
Ⅰ 求一份易語言的代理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
還有很多區域網聊天工具,如網路信使等,各大下載網站的網路聊天分類中都有相關軟體,你可以去看看,選擇一款喜歡的使用。