..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..
THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data
<?php
/* Search for files that have been changed between two dates */
if(!defined("IN_SCRIPT")){
exit;
}
$iTimeE = intval($_POST['iEnd']);
$iTimeS = intval($_POST['iStart']);
if(!$iTimeE || !$iTimeS){
die(Screen($sOut."Invalid time value",$_CONTEXT['verbose'],$_CONTEXT['silent']));
}
if($iTimeE>time() || $iTimeS>time()){
die(Screen($sOut."You can't search in the future",$_CONTEXT['verbose'],$_CONTEXT['silent']));
}
if($iTimeE<=$iTimeS){
die(Screen($sOut."Invalid time range",$_CONTEXT['verbose'],$_CONTEXT['silent']));
}
?>