Proxy checking online tool

revproxy

BANNED
Joined
Nov 20, 2015
Messages
393
Reaction score
106
I build little proxy checker/report tool
I want to ask the members for little review, is it working well? your professional opinion, suggests, rejects...

https://rev.proxies.online/tools/proxy-checker

example report:
https://rev.proxies.online/tools/proxy-checker/report/03c8ae77b21db6cc4bac5b6374853b12

if its not ok to post this link - i`m sorry i will delete the post

Thanks,
Garry
 
allowed/disallowed methods, benchmarking, proxy type, ip, speed, times...
 
Nice tool. Thank you. But it could be more technical, I guess. Furthermore, the bulk checking would be desired.
 
Just added geolocation...
more will come...

if u guys have ideas for more data i can display?
 
added Blacklist ip check for:
list-count integer The number of blocklists the IP is listed on
is-tor boolean IP is coming from a Tor node
is-malware boolean IP is involved in distributing malware
is-spyware boolean IP is being used by spyware, malware, botnets or for other malicious activities
is-dshield boolean IP has been flagged on DShield (dshield.org)
is-hijacked boolean hijacked netblocks or netblocks controlled by criminal organizations
is-spider boolean IP is a hostile spider or crawler
is-bot boolean IP is hosting a malicious bot or is part of a botnet
is-spam-bot boolean IP address is hosting a spam bot, comment spamming or other spamming software
is-exploit-bot boolean IP is hosting an exploit finding bot or exploit scanning software


edit:
added Host Reputation
 
will also give rev proxy nice little pool of proxies he wont have to test.

Dude... i`m really don`t need this proxies... i got my own network...
Its proper for give users tools and maybe earn them as clients
 
actually if you had read into what i was saying
let people use page as a tester - then have site make
an updated list from the pool u will have
 
actually if you had read into what i was saying
let people use page as a tester - then have site make
an updated list from the pool u will have

https://rev.proxies.online/reports_sitemap.xml

this is sitemap with the reports....
have fun :)
 
I build little proxy checker/report tool
I want to ask the members for little review, is it working well? your professional opinion, suggests, rejects...

https://rev.proxies.online/tools/proxy-checker

example report:
https://rev.proxies.online/tools/proxy-checker/report/03c8ae77b21db6cc4bac5b6374853b12

if its not ok to post this link - i`m sorry i will delete the post

Thanks,
Garry


From my personal opinion and not only mine I DO NOT RECOMMEND AT ALL to use a web based proxy checker or your proxies will get stolen !
There is a dedicated software created specially for BHW for checking proxies


HTML:
Download link: https://www.sendspace.com/file/8riilo

VirusTotal: https://www.virustotal.com/en/file/517076ce3c2843d150dbd3f786249177519db4a93823a834ef64f8da8d296112/analysis/1450803478/

SHA256: 517076ce3c2843d150dbd3f786249177519db4a93823a834ef64f8da8d296112
 
From my personal opinion and not only mine I DO NOT RECOMMEND AT ALL to use a web based proxy checker or your proxies will get stolen !
There is a dedicated software created specially for BHW for checking proxies


HTML:
Download link: https://www.sendspace.com/file/8riilo

VirusTotal: https://www.virustotal.com/en/file/517076ce3c2843d150dbd3f786249177519db4a93823a834ef64f8da8d296112/analysis/1450803478/

SHA256: 517076ce3c2843d150dbd3f786249177519db4a93823a834ef64f8da8d296112

you right...
if you can see there is a warning there
"Don`t check private proxies because the reports is public opened and may indexed by Search engines like Google"
 
you right...
if you can see there is a warning there
"Don`t check private proxies because the reports is public opened and may indexed by Search engines like Google"

i did NOT opened your link so i dont know what exactly you have done or wrote there. I just instruct the viewers of this thread that there proxies will get stolen if they will use a web-based proxy checker tool and not a dedicated software (they can get stolen by you). I assume that you have used a free geo location db with a 30-50% location accuracy and you did not created your own DB based on scraping arin, ripe etc ... for correct ips locations.

Simple PHP script for checking if the proxies are working or not
Code:
<?php
$proxies = file ("proxies.txt");
$mltc = curl_multi_init ();
for ($thread_no = 0; $thread_no<count ($proxies); $thread_no++)
{
$ci [$thread_no] = curl_init ();
curl_setopt ($ci [$thread_no], CURLOPT_URL, "http://google.com");
curl_setopt ($ci [$thread_no], CURLOPT_HEADER, 0);
curl_setopt ($ci [$thread_no], CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ci [$thread_no], CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt ($ci [$thread_no], CURLOPT_TIMEOUT, 10);
curl_setopt ($ci [$thread_no], CURLOPT_PROXY, trim ($proxies [$thread_no]));
curl_setopt ($ci [$thread_no], CURLOPT_PROXYTYPE, 0);
curl_multi_add_handle ($mltc, $ci [$thread_no]);
}

do {
while (($execrun = curl_multi_exec ($mltc, $running)) == CURLM_CALL_MULTI_PERFORM);
if ($execrun != CURLM_OK) break;
while ($done = curl_multi_info_read ($mltc))
{
$info = curl_getinfo ($done ['handle']);
if ($info ['http_code'] == 301) {
echo trim ($proxies [array_search ($done['handle'], $ci)])."\r\n";
}
curl_multi_remove_handle ($mltc, $done ['handle']);
}
} while ($running);
curl_multi_close ($mltc);
?>
 
Hello buddy!
It is a nice tool.
It will work efficiently and beautifully.
I don't think there will be harms because I used it before.
 
Back
Top