random gallery image
random tutorial
preview

..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 you don't..

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
/* Authentication checker */
if(!defined('IN_SCRIPT')){
    exit;
}
if(!
defined("PASS_WO_LOGIN")){
    
// make sure we have any sort of authentication setup
    
if(!@$_CONTEXT['pass_access']){
        if(!@
$_CONTEXT['ip_access']){
            
// as long as we don't have any type of authentication, redirect to setup
            
header("Location: setup.php");
            exit;
        }
    }
    
// block unauthorized ip access
    
if(isset($_CONTEXT['ip_access']) && $_CONTEXT['ip_access']){
        if(
in_array($_SERVER['REMOTE_ADDR'],$_CONTEXT['ip_allowed'])){
            
$bLoggedTHC true;
        }
    }
    
// block unauthorized access without a password specified
    
if(isset($_CONTEXT['pass_access']) && $_CONTEXT['pass_access']==true){
        
$sCookieName "thcauth_".substr($_CONTEXT['pass_hash'],0,5);
        if(!isset(
$_COOKIE[$sCookieName])){
            
header("Location: ".$_PATHS['root_http']."/login.php");
            exit;
        }
        
$bLoggedTHC = ($_COOKIE[$sCookieName]==$_CONTEXT['pass_hash'] ? true false); 
    }
    if(!
$bLoggedTHC){
        
// redirect on login failure
        
header("Location: ".$_CONTEXT['redirect_fail_login']);
        exit;
    }
}
?>
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4372
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.