random gallery image
random tutorial
preview

..to create a different index page for the suite. It's very easy because the only thing you need to do is change the content of default.php. I don't want to create something like hello..

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
/*
Function to decide whether to output something or not
    
Variable output is based upon the configuration variables in $_CONTEXT, 
$_CONTEXT['verbose']: verbose output, will always output anything
$_CONTEXT['silent']: verbose output, will always output anything
    
If $_CONTEXT['silent'] is empty nothing will ever be sent to the output, in any other case there will always be output, with an 
exception when both verbose and silent are false and $iOut is equal to zero.
This behaviour can allow you to have total control over your output.

PARAMETERS:
$sString: string to output
$bVerbose: verbose output
$bSilent: no output
$iOut: send or stop output when both verbose and silent are turned off, default is on (OPTIONAL)

RETURNS:
STRING: either empty or the output

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 12-11-2014
*/
function Screen($sString,$bVerbose,$bSilent,$iOut=1){
    if(
$bSilent || (!$bVerbose && $iOut=&& !$bSilent)){
        
$sString "";
    }
    return(
$sString);
}
?>
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4381
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.