..you how to make a multi bridge between THC_DO, THC_SS and THC_II and keep track of the output in realtime using iframes. So what exactly are we going to do? First of all if you don't..
AntiFTP uses wordlists in order to bruteforce FTP user accounts
<?php
/* Fetches a webpage through proxy
Opens a connection with a proxy and fetches a location.
PARAMETERS:
$sUrl: url of the page to fetch
$sProxyUrl: location of the proxy
$iPort: port where the proxy service listens on
$sPass: username:password
RETURNS:
STRING: output of curl_exec()
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 12-11-2014
*/
function ProxyConnect($sUrl,$sProxyUrl,$iPort="",$sPass=""){
$ch = curl_init($sUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, $sProxyUrl);
if($iPort!=""){
curl_setopt($ch, CURLOPT_PROXYPORT, $iPort);
}
if($sPass!=""){
// user:password
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $sPass);
}
return(curl_exec($ch));
}
?>