random gallery image
random tutorial
preview

..we will make a new module and not just some new module, nope let's make a fully automatic injection script! This tutorial is the first step into making this. Let's first explain what..

read more

random stress testing
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
/* Verifies core functions existence

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 12-02-2015
*/
if(!defined('IN_SCRIPT')){
    exit;
}
if(
$_CONTEXT['allow_functcheck']){
    
$_CONTEXT['scanlabel']['missing_func'] = "missing functions";
    
$_CONTEXT['missing_func'] = "";
    
// load the data directory file that contains all core functions or throw a fatal error
    
$aRequire = array($_PATHS['data_root']."/core_functions.php");
    for(
$x=0;$x<count($aRequire);$x++){
        (!
IsThere($aRequire[$x]) ? include_once($_PATHS['end']) : include_once($aRequire[$x]));
    }
    for(
$x=0;$x<count($_CONTEXT['core_functions']);$x++){
        
$sDest $_PATHS['functions_root']."/".$_CONTEXT['core_functions'][$x];
        
// normally I'd throw a fatal here, but we want to be able to let the user download the file and install it automatically
        
if(!file_exists($sDest)){
            
$_CONTEXT['missing_func'] .= "                    <div class=\"deleterow".$x."\"><a href=\"#\" class=\"rdownload\" id=\"".$x."\" title=\"".$_CONTEXT['core_functions'][$x]."\">download and install <b>".$_CONTEXT['core_functions'][$x]."</b></a></div>\n";
        }
    }
    
$_CONTEXT['scandata']['missing_func'] = $_CONTEXT['missing_func'];
}
?>
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.