..make a new module and not just some new module, nope let's make a fully automatic injection script! This tutorial is the first step into making this. Let's first explain what we're..
Attempts to find suspicious and evil files or code
<?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']));
}
?>