random gallery image
random tutorial
preview

..I will show you how to create native tools. I'm not going to make a new tool though, instead I will show you what is required to create one. You can find all the native tools in..

read more

random vulnerability assesment
Mister LG

Mister LG can create upload forms and test targets on file upload vulnerabilities

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 login security properties

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 10-03-2015
*/
if(!defined('IN_SCRIPT')){
    exit;
}
$_CONTEXT['subtitle'] = "Security Manager";
$sJSDev "<script type=\"text/javascript\" src=\"Templates/".$_PATHS['style_user']."/js/security.js\"></script>\n";
$_CONTEXT['headers'] = isset($_CONTEXT['headers']) ? $_CONTEXT['headers'].$sJSDev $sJSDev;
// target files we need, so make sure they are present
$aFiles = array($_PATHS['functions_root']."/fwrite.php",$_PATHS['functions_root']."/get_file_data.php");
for(
$x=0;$x<count($aFiles);$x++){
    (!
IsThere($aFiles[$x]) ? include_once($_PATHS['end']) : include_once($aFiles[$x]));
}
// output form
$sSelect "\n<select name=\"iUpdateMe\" class=\"updateme\">\n";
$sSelect .= "    <option value=\"-1\" selected=\"selected\">select an option</option>\n";
$sSelect .= "    <option value=\"0\">change password access</option>\n";
$sSelect .= "    <option value=\"1\">change ip access</option>\n";
$sSelect .= "    <option value=\"2\">allowed ip addresses</option>\n";
$sSelect .= "    <option value=\"3\">update password</option>\n";
$sSelect .= "    <option value=\"4\">update password hash - advanced users only</option>\n";
$sSelect .= "    <option value=\"5\">update password salt - advanced users only</option>\n";
$sSelect .= "    <option value=\"6\">update cookie life</option>\n";
$sSelect .= "    <option value=\"7\">update sleep after login fail - anti bruteforce</option>\n";
$sSelect .= "    <option value=\"8\">login file location</option>\n";
$sSelect .= "    <option value=\"9\">redirect after login failure</option>\n";
$sSelect .= "    <option value=\"10\">reset access to suite</option>\n";
$sSelect .= "</select>\n";
// store default values
$sHidden "<div class=\"defvals\">\n";
$sHidden .= "    <div class=\"ip_access\">".$_CONTEXT['ip_access']."</div>\n";
$sHidden .= "    <div class=\"ip_allowed\">";
for(
$x=0;$x<count($_CONTEXT['ip_allowed']);$x++){
    if(
$x>0){
        
$sHidden .= ",";
    }
    
$sHidden .= $_CONTEXT['ip_allowed'][$x];
}
$sHidden .= "</div>\n";
$sHidden .= "    <div class=\"pass_access\">".$_CONTEXT['pass_access']."</div>\n";
$sHidden .= "    <div class=\"pass_hash\">".$_CONTEXT['pass_hash']."</div>\n";
$sHidden .= "    <div class=\"pass_salt\">".$_CONTEXT['pass_salt']."</div>\n";
$sHidden .= "    <div class=\"sleeptime\">".$_CONTEXT['sleeptime']."</div>\n";
$sHidden .= "    <div class=\"cookielife\">".$_CONTEXT['cookielife']."</div>\n";
$sHidden .= "    <div class=\"login_file\">".$_CONTEXT['login_file']."</div>\n";
$sHidden .= "    <div class=\"redirect_fail_login\">".$_CONTEXT['redirect_fail_login']."</div>\n";
$sHidden .= "</div>\n";
// form
$sCode .= "            <form method=\"post\" class=\"security\">\n";
$sCode .= "            <div class=\"emboss borderr5 border1pxtrans pad5 edgeglow overflw\">\n";
$sCode .= "                <div class=\"embosshdrnocenter border1pxtrans pad10\">Edit your access settings</div>\n";
$sCode .= "                <div class=\"cc_record\">\n";
$sCode .= "                    <div class=\"flt pad3 w150\">select option</div>\n";
$sCode .= "                    <div class=\"flt pad3\">".$sSelect."</div>\n";
$sCode .= "                </div>\n";
$sCode .= "                <div class=\"clear\"></div>\n";
$sCode .= "                <div class=\"dholder\"></div>\n";
$sCode .= "                <div class=\"cc_record\">\n";
$sCode .= "                    <div class=\"flt pad3\"><input type=\"submit\" name=\"submit\" value=\"Update\" /><input type=\"hidden\" name=\"iCFG\" value=\"".$_POST['iCFG']."\" /></div>\n";
$sCode .= "                </div>\n";
$sCode .= "                <div class=\"clear\"></div>\n";
$sCode .= "            </div>\n";
$sCode .= "            </form>\n";
$sCode .= $sHidden;
?>
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.