random gallery image
random tutorial
preview

..are going to create a new app for the hacksuite. We're not going to do anything fancy here, we will make a simple app to get familiar how to write compatible scripts for the suite. We..

read more

random other
xConverter

THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data

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
/* Starts a task for a module, all tasks run until completed, even if the browser screen has been closed

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
    exit;
}
set_time_limit(0);
ignore_user_abort(true);
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
$_CONTEXT['start_task'] = time();
$_ENTRY $_MODULE_C."|".$_CONTEXT['start_task']."|0|".substr(md5($_MODULE_C."|".$_CONTEXT['start_task']),0,10)."\n";
// we'll use these to see whether there's a background task running and in order to update the task and log file
if(!function_exists("RawToArray")){
    include_once(
$_PATHS['functions_root']."/raw_to_array.php");
}
if(!
function_exists('WriteF')){
    include_once(
$_PATHS['functions_root']."/fwrite.php");
}
if(!
function_exists('GetFileData')){
    include_once(
$_PATHS['functions_root']."/get_file_data.php");
}
// avoid similar running tasks
$_PATHS['task_file'] = $_PATHS['data_root']."/running.txt";
if(@
filesize($_PATHS['task_file'])>0){
    if(
false!==($aFileDataI RawToArray($_PATHS['task_file']))){
        for(
$x=0;$x<count($aFileDataI);$x++){
            if(
$aFileDataI[$x][0]==$_MODULE_C && trim($aFileDataI[$x][1]==$_CONTEXT['start_task'])){
                die(
"Already running an instance of this module at this time");
            }
        }
    }
}
// ok let's run this script and save it as background task
WriteF($_PATHS['task_file'],$_ENTRY);
?>
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.