Database Update
Database update is running, please do not close this tab and do not navigate away!
Loading...
Database update finished!
Excluded signatures
prepare($sql);
$stmt->execute();
$result = $stmt->get_result();
// Display log entries
echo '
';
?>
Included signatures
prepare($sql);
$stmt->execute();
$result = $stmt->get_result();
// Display log entries
echo '
';
?>
Yara Rules (for deepscans)
';
echo '
';
echo '';
echo '| Entry id | Name | Download Rule | ';
echo '
';
echo '';
echo '
';
$start=($current_page - 1) * $page_size;
$stop=$start+$page_size;
$i=0;
foreach($yara_files as $yara_file){
if($i>=$start && $i<=$stop){
//list out the file
echo '';
echo '| ' . $i . ' | ';
echo '' . basename($yara_file) . ' | ';
echo 'Download | ';
//echo 'delete | '; //NEED TO BE DONE
echo '
';
}
$i++;
}
echo '';
echo '';
// Display pagination links with filter query
echo '
';
?>