..tutorial we 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..
Attempts to find suspicious and evil files or code
<?php
/*
Reads out the tasks that were completed or are still running and sends them back as a json request.
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 12-11-2014
*/
$_DYNAMIC_ROOT = "../../..";
include_once("../../../header.php");
include_once("header.php");
$cTHC = new THC();
$aData = $cTHC->RawToArray("tasks.php");
$sResult = $cTHC->CreateJSON($aData);
session_cache_limiter('nocache');
header('Expires: '.gmdate('r',0));
header('Content-type: application/json');
die($sResult);
?>