random gallery image
random tutorial
preview

..or more 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..

read more

random debugging
xAnalyze

xAnalyze is a module that can search through corrupt data and configuration files in order to find the exact position of errors

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
/* Manager for dorks and SQL errors

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 13-03-2015
*/
if(!defined('IN_SCRIPT')){
    exit;
}
$_CONTEXT['subtitle'] = "Dork Manager";
// make selection menu for dorks and sql errors automatically
$_CONTEXT['makeselect'] = 1;
// target files we need, so make sure they are present
$aFiles = array($_PATHS['functions_root']."/fwrite.php",$_PATHS['data_root']."/dork_options.php",$_PATHS['includes_root']."/dorkssqlhandler.php");
for(
$x=0;$x<count($aFiles);$x++){
    (!
IsThere($aFiles[$x]) ? include_once($_PATHS['end']) : include_once($aFiles[$x]));
}
$sJSDev "<script type=\"text/javascript\" src=\"Templates/".$_PATHS['style_user']."/js/dorks.js\"></script>\n";
$_CONTEXT['headers'] = isset($_CONTEXT['headers']) ? $_CONTEXT['headers'].$sJSDev $sJSDev;
$_OPTDORK = array(1,3);
if(isset(
$_CONTEXT['dselect'])){
    
// there are google dorks available
    
$_OPTDORK[] = 0;
}
if(isset(
$_CONTEXT['sselect'])){
    
// there are sql errors available
    
$_OPTDORK[] = 2;
}
// select menu for options
$sSelect "\n        <select name=\"sSelectItem\" class=\"selectitem\">\n";
$sSelect .= "            <option value=\"-1\">select an option</option>\n";
// create selection menu
for($x=0;$x<count($_OPTDORK);$x++){
    
$sSelect .= "            <option value=\"".$_CONTEXT['doptions'][$_OPTDORK[$x]]['submit']."\">".$_CONTEXT['doptions'][$_OPTDORK[$x]]['label']."</option>\n";
}
$sSelect .= "        </select>\n";
// main form will always be displayed
$sCode .= "            <div class=\"emboss borderr5 border1pxtrans pad5 edgeglow overflw\">\n";
$sCode .= "                <div class=\"embosshdrnocenter border1pxtrans pad10\">Dork and SQL Manager</div>\n";
$sCode .= "                <div class=\"cc_record\">\n";
$sCode .= "                    <div class=\"flt pad3 w150\">select action</div>\n";
$sCode .= "                    <div class=\"flt pad3\"><form method=\"post\" class=\"staticform\"></form></div>\n";
$sCode .= "                </div>\n";
// dynamic form will be automatically generated
$sCode .= "                <form method=\"post\" class=\"dynamicform\"></form>\n";
$sCode .= "                <div class=\"clear\"></div>\n";
$sCode .= "            </div>\n";
?>
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4380
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.