..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 what..
Discovers interesting locations, paths and data of a website
<?php
/* TestServers links in menu
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 15-02-2015
*/
/* TestServers */
if(!defined('IN_SCRIPT')){
exit;
}
if($_CONTEXT['rightdisplay']['show_sources']){
$_CONTEXT['htmlo'] .= " <div class=\"subname\" id=\"tsr\">test servers</div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"tsr\">\n";
$_CONTEXT['htmlo'] .= " <div class=\"lnk\">- <a href=\"".$_PATHS['servers_root_http']."/upload.php\">file upload</a></div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"lnk\">- <a href=\"".$_PATHS['servers_root_http']."/login_single_user.php\">html login</a></div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"lnk\">- <a href=\"".$_PATHS['servers_root_http']."/http_authenticate.php\">http authenticate</a></div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"lnk\">- <a href=\"".$_PATHS['servers_root_http']."/xss.php\">xss</a></div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"lnk\">- <a href=\"".$_PATHS['servers_root_http']."/fi.php\">file injection</a></div>\n";
$_CONTEXT['htmlo'] .= " </div>\n";
}
?>