exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Multithreaded Proxy Checker

Multithreaded Proxy Checker
Posted Jul 22, 2012
Authored by miyachung

This php script is a small tool for performing proxy checks.

tags | web, php
SHA-256 | 335c6bc3f7508bd7388fd3b9f2a8c061fae18e1b4e0260668b4a1b074b9587a3

Multithreaded Proxy Checker

Change Mirror Download
<?php
set_time_limit(0);
/***********************************************
* Multithreaded Proxy Checker
* Coded by Miyachung
* Janissaries.Org
* Miyachung@hotmail.com
------------------------------------------------
* Demonstration -> http://www.youtube.com/watch?v=4icPZHv3W9g
* Type list like IP:PORT in a file
***********************************************/

/*-----------------------------------------------------------------------*/
echo "\n[+]Enter your proxy list: ";
$proxy_list = fgets(STDIN);
$proxy_list = str_replace("\r\n","",$proxy_list);
$proxy_list = trim($proxy_list);

echo "[+]Enter number of thread: ";
$thread = fgets(STDIN);
$thread = str_replace("\r\n","",$thread);
$thread = trim($thread);
echo "[+]Enter timeout sec: ";
$timeout = fgets(STDIN);
$timeout = str_replace("\r\n","",$timeout);
$timeout = trim($timeout);
echo "[+]Checking proxies\n";
echo "-------------------------------------------------------\n";
$open_file = file($proxy_list);
$open_file = preg_replace("#\r\n#si","",$open_file);


checker($open_file,$thread);
/*-----------------------------------------------------------------------*/
function checker($ips,$thread)
{
global $timeout;

$multi = curl_multi_init();
$ips = array_chunk($ips,$thread);
$total = 0;
$time1 = time();
foreach($ips as $ip)
{
for($i=0;$i<=count($ip)-1;$i++)
{
$curl[$i] = curl_init();
curl_setopt($curl[$i],CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl[$i],CURLOPT_URL,$ip[$i]);
curl_setopt($curl[$i],CURLOPT_TIMEOUT,$timeout);
curl_multi_add_handle($multi,$curl[$i]);
}

do
{
curl_multi_exec($multi,$active);
usleep(11);
}while( $active > 0 );

foreach($curl as $cid => $cend)
{
$info = curl_getinfo($cend);
curl_multi_remove_handle($multi,$cend);
if($info['http_code'] != 0)
{
$total++;
echo "[~]Proxy works -> ".$ip[$cid]."\n";
save_file("works.txt",$ip[$cid]);
}
}
}
$time2 = time();
echo "\n[+]Total working proxies: $total,checking completed\n";
echo "[+]Elapsed time -> ".($time2-$time1)." seconds\n";
echo "[+]Coded by miyachung || Janissaries.Org\n";
echo "-------------------------------------------------------\n";
}

function save_file($file,$content)
{
$open = fopen($file,'ab');
fwrite($open,$content."\r\n");
fclose($open);
}

?>
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close