..tutorial we are going to create a new app for the hacksuite. We're not going to do anything fancy here, we will make a simple app to get familiar how to write compatible scripts for..
Creates a blueprint/map of a server folder
<?php
/* Properties for TestServers
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 08-03-2015
*/
if(!defined("IN_SCRIPT")){
exit;
}
$_CONTEXT['services'] = array();
$_CONTEXT['services'][0] = array("login_single_user.php","Very basic single user login test system","lsu.png");
$_CONTEXT['services'][1] = array("http_authenticate.php","Vulnerable HTTP Authentication","vha.png");
$_CONTEXT['services'][2] = array("upload.php","Exploitable File Upload Server","efu.png");
$_CONTEXT['services'][3] = array("fi.php","File Injectable Server","inj.png");
$_CONTEXT['services'][4] = array("xss.php","XSS Exploitable Server","xss.png");
?>