random gallery image
random tutorial
preview

..I will show you how to make a multi bridge between THC_DO, THC_SS and THC_II and keep track of the output in realtime using iframes. So what exactly are we going to do? First of all if..

read more

random information gathering
THC Sscan

THC Sscan is a very versatile tool for scanning (html) files

more about this module
more of this category
more modules

HackSuite File Library
File Library
Here you can find the latest files and structure of the THC HackSuite, note that if you have an earlier version of the suite it's not recommended to update files manually. Instead you should overwrite your existing HackSuite environment.
<?php
if(!defined('IN_SCRIPT')){
    exit;
}
/* Render jQuery field actions */
$sJS "\n\$(function(){\n";
// first make the default fields appear.
foreach($_JSFUNC as $sKey=>$sValue){
    
$sJS .= "    \$('#".$sKey."').".($sValue=="show()" "hide('slow')").";\n";
}
// default field actions
$sJS .= "    // make stuff appear or dissapear depending on selected scan type\n";
$sJS .= "    \$(\".scanf\").change(function() {\n";
$sJS .= "        if(this.value=='1'){\n";
$sJS .= "            // infinite scan of target each x seconds, act on string occurence\n";
$sJS .= "            \$('#timescan').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value=='2'){\n";
$sJS .= "            // infinite scan of target each x seconds, act on missing string\n";
$sJS .= "            \$('#timescan').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value=='3'){\n";
$sJS .= "            // temporary scan of target each x seconds, act on string occurence\n";
$sJS .= "            \$('#timescan').show();\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value=='4'){\n";
$sJS .= "            // temporary scan of target each x seconds, act on missing string\n";
$sJS .= "            \$('#timescan').show();\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value==''){\n";
$sJS .= "            // no option selected\n";
$sJS .= "            \$('#timescan').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "    });\n";
$sJS .= "    // notification\n";
$sJS .= "    \$(\".notifyf\").change(function() {\n";
$sJS .= "        if(this.value=='1'){\n";
$sJS .= "            // hide log options\n";
$sJS .= "            \$('#emailaddress').show();\n";
$sJS .= "            \$('#emailtemplate').show();\n";
$sJS .= "            \$('#logfile').hide('slow');\n";
$sJS .= "            \$('#logtemplate').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value=='2'){\n";
$sJS .= "            // hide email options\n";
$sJS .= "            \$('#emailaddress').hide('slow');\n";
$sJS .= "            \$('#emailtemplate').hide('slow');\n";
$sJS .= "            \$('#logfile').show();\n";
$sJS .= "            \$('#logtemplate').show();\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value==''){\n";
$sJS .= "            // hide email and log options\n";
$sJS .= "            \$('#emailaddress').hide('slow');\n";
$sJS .= "            \$('#emailtemplate').hide('slow');\n";
$sJS .= "            \$('#logfile').hide('slow');\n";
$sJS .= "            \$('#logtemplate').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "    });\n";
$sJS .= "    // use a callback\n";
$sJS .= "    \$(\".callbackf\").change(function() {\n";
$sJS .= "        if(this.value=='yes'){\n";
$sJS .= "            // show callback function input field\n";
$sJS .= "            \$('#callbackfunction').show();\n";
$sJS .= "            \$('#sendvars').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "        else{\n";
$sJS .= "            // show a1-a9\n";
// when we set callback to empty or no, show a1-a9
$sAShow "";
for(
$x=1;$x<=9;$x++){
    
$sAShow .= "        \$('#a".$x."').show();\n";
}
$sJS .= $sAShow;
$sJS .= "        }\n";
$sJS .= "        if(this.value=='no'){\n";
$sJS .= "            // hide callback function input field\n";
$sJS .= "            \$('#callbackfunction').hide('slow');\n";
$sJS .= "            \$('#sendvars').show();\n";
$sJS .= "        }\n";
$sJS .= "        else if(this.value==''){\n";
$sJS .= "            // no option selected\n";
$sJS .= "            \$('#callbackfunction').hide('slow');\n";
$sJS .= "            \$('#sendvars').hide('slow');\n";
$sJS .= "        }\n";
$sJS .= "    });\n";
// okidoki, let's get all those callbacks and render the last jQuery functions
$_GETCBACK 1;
$_CBACKSELECT "";
if(
false!==($aFiles GetFilesByDirectory($_PATHS['thc_ss_callbacks']))){
    
// include the callbacks and generate the script
    
$_CBACKSELECT .= "<select name=\"sCallbackF\" class=\"cbck\">\n";
    
$_CBACKSELECT .= "    <option value=\"\" selected=\"selected\">select an option</option>\n";
    
$iFiles count($aFiles);
    
$sJS .= "    \$(\".cbck\").change(function() {\n";//cbck
    
for($x=0;$x<$iFiles;$x++){
        include_once(
$_PATHS['thc_ss_callbacks']."/".$aFiles[$x]);
        
$_CBACKSELECT .= "    <option value=\"".$_CBACKD[1]."\">".$_CBACKD[0]."</option>\n";
        
// we are interested in the two variables $_CBACKD and $_CBACKV
        
$sJS .= "        ".($x!="else " "")."if(this.value=='".$_CBACKD[1]."'){\n";
        
$sJS .= "            // ".$_CBACKD[0]."\n";
        
// set values, hide fields etc.
        
for($y=0;$y<count($_CBACKV);$y++){
            if(
$_CBACKV[$y]['value']!=""){
                
// change the value of this item
                
$sJS .= "            \$('.".$_CBACKV[$y]['fieldclass']."').val('".str_replace("'","\'",$_CBACKV[$y]['value'])."');\n";
            }
            if(
$_CBACKV[$y]['visibility']==0){
                
// hide this item
                
$sJS .= "            \$('.".$_CBACKV[$y]['row']."').hide('slow');\n";
            }
            elseif(
$_CBACKV[$y]['visibility']==1){
                
// show item
                
$sJS .= "            \$('.".$_CBACKV[$y]['row']."').show();\n";
            }
        }
        
$sJS .= "        }\n";
    }
    
$sJS .= "    });\n";
    
$_CBACKSELECT .= "    </select>\n";
}

$sJS .= "});";
$sJS "<script type=\"text/javascript\">".$sJS."</script>";
?>
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4384
native: 26
modules: 21
apps: 2
support development
It takes lots of calories in order to create new things for the hacksuite, so it would be grand if you could buy me a protein shake or extra energy to keep me going. Thanks!
disclaimer
We are not responsible for any direct or indirect damage caused by abusing the tools provided on hacksuite.com. The suite is developed for educational purposes, use at your own risk!
Created by Remco Kouw. Powered by protein shakes and a high calorie diet.