20 lines
458 B
PHP
20 lines
458 B
PHP
<?php
|
|
session_start();
|
|
if($_GET['nonce'] !== $_SESSION['nonce']) { die('csrf validation failed'); }
|
|
|
|
$scansDir = './scans';
|
|
$logsDir = './logs';
|
|
|
|
$scans = array_diff(scandir($scansDir), array('..', '.')); # silly method to remove the . and ..
|
|
$logs = array_diff(scandir($logsDir), array('..', '.'));
|
|
|
|
foreach($scans as $scan) {
|
|
unlink("$scansDir/$scan");
|
|
}
|
|
|
|
foreach($logs as $log) {
|
|
unlink("$logsDir/$log");
|
|
}
|
|
|
|
header("Location: /nmaprincesspi/");
|
|
?>
|