..modules you must have seen the iframes used for realtime result display. In this tutorial I'm going to show you how to insert them into your module and how they function. what we..
Discovers interesting locations, paths and data of a website
<?php
/* Link for creating a new THC_SS communication session
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
exit;
}
$_CONTEXT['htmlo'] .= " <h2 class=\"communicate\">Communicate</h2>\n";
$_CONTEXT['htmlo'] .= " <div id=\"communicate\" class=spacing>\n";
if(is_dir($_PATHS['root']."/Modules/thc_ss")){
$_CONTEXT['htmlo'] .= " <div><a href=\"index.php?module=thc_ss\">setup a new session</a></div>\n";
}
else{
$_CONTEXT['htmlo'] .= " <div>you need <a href=\"http://www.hacksuite.com\">thc_ss</a> to perform this scan</div>\n";
}
$_CONTEXT['htmlo'] .= " </div>\n";
?>