..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..
Creates a blueprint/map of a server folder
<?php
/*
Properties file for xss.php
*/
$_PROPERTIES = array();
// iExploitLevel
$_PROPERTIES['iExploitLevel'] = array();
$_PROPERTIES['iExploitLevel']['description'] = "security level";
$_PROPERTIES['iExploitLevel']['default_value'] = "3";
$_PROPERTIES['iExploitLevel']['default_html'] = "<select name=\"iExploitLevel\"><option value=\"0\">really low</option>><option value=\"1\">low</option><option value=\"2\">medium</option><option value=\"3\">high</option></select>";
$_PROPERTIES['iExploitLevel']['input_type'] = "select";
$_PROPERTIES['iExploitLevel']['type_expected'] = "int";
$_PROPERTIES['iExploitLevel']['max_length'] = 1;
?>