random gallery image
random tutorial
preview

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

read more

random bruteforce
AntiFTP

AntiFTP uses wordlists in order to bruteforce FTP user accounts

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
/* Upload file handler

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
    exit;
}
include_once(
$_PATHS['data_root']."/upload_ext.php");
if(!
is_dir($sDest)){
    
$sCode .= "<div class=\"spacingmsg\">".$_CONTEXT['result_headers']['error']."Invalid destination directory</div>\n";
}
else{
    if(isset(
$_FILES['sFile']['tmp_name'])){
        
// do we have an upload
        
$aExtension explode(".",$_FILES['sFile']['name']);
        if(
count($aExtension)!=|| !in_array($aExtension[1],$_CONTEXT['upload']['ext'])){
            
$sCode "<div class=\"spacingmsg\">".$_CONTEXT['result_headers']['error']."Invalid file uploaded, expecting ".(implode(",",$_CONTEXT['upload']['ext']))." files<p><a href=\"development.php?action=list\">[ back ]</a></p></div>";
        }
        else{
            
$sDest $sDest."/".$_FILES['sFile']['name'];
            if(
file_exists($sDest)){
                
$sCode "<div class=\"spacingmsg\">".$_CONTEXT['result_headers']['result']."".$_FILES['sFile']['name']." already exists<p><a href=\"development.php?action=list\">[ back ]</a></p></div>";
            }
            else{
                
move_uploaded_file($_FILES['sFile']['tmp_name'],$sDest);
                
$sCode "<div class=\"spacingmsg\">".$_CONTEXT['result_headers']['result']."Successfully transferred file<p><a href=\"development.php?action=list\">[ back ]</a></p></div>";
            }
        }
    }
    else{
        
$sCode "<div class=\"spacingmsg\">".$_CONTEXT['result_headers']['error']."No file uploaded<p><a href=\"development.php?action=list\">[ back ]</a></p></div>";
    }
}
?>
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.