..cool, we will make a new module and not just some new module, nope let's make a fully automatic injection script! This tutorial is the first step into making this. Let's first explain..
Discovers interesting locations, paths and data of a website
<?php
/* Fetches a list of proxies from proxy.txt
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
exit;
}
$sPage = $_PATHS['functions_root']."/raw_to_array.php";
(!IsThere($sPage) ? include_once($_PATHS['end']) : include_once($sPage));
$sPage = $_PATHS['data_root']."/proxies.txt";
$_PROXIES = (@filesize($sPage)!=0 ? RawToArray($sPage) : false);
?>