Files
nmaprincesspi/index.php
T
2025-05-15 21:13:59 -06:00

49 lines
1.8 KiB
PHP

<?php
session_start();
$nonce = hash('sha256', microtime() . rand(1000000, 9999999));
$_SESSION['nonce'] = $nonce;
$dir = './scans';
$scans = array_diff(scandir($dir), array('..', '.')); # silly method to remove the . and ..
foreach($scans as $scan) {
$scanList .= "<a href='/nmaprincesspi/scans/$scan'>$scan<a><br>\n";
}
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/nmaprincesspi.css">
<script src="js/nmaprincesspi.js"></script>
<link rel="icon" type="css/img/" href="css/img/favicon.ico">
<title>Princess Pi's Magical Nmaprincesspi!</title>
</head>
<body>
<h1>Princess Pi's Magical Nmaprincesspi!</h1>
<a name="top">&nbsp;</a>
<br>
<form id="cmdform">
<label for="nmapcmd">nmap command</label>
<input type="text" id="nmapcmd" name="nmapcmd">
<input type="hidden" name="nonce" id="nonce" value="<?php echo $nonce; ?>">
<input type="submit" value="Go, Baby, Go!">
</form>
<br>
<br>
<span class="fakelink" id="showlist">Show Previous Scans</span> | <a href="https://nmap.org/book/man.html" target="_blank">Nmap Reference</a>
<br><br>
<p class="hidden" id="link"></p>
<div id="scanlist" class="hidden">
<p><a href="run_clear_scans.php?nonce=<?php echo $nonce; ?>">Delete All Old Scans</a></p>
<p><?php echo $scanList; ?></p>
</div>
<div class="hidden" id="progress">
<p>Progress<br>
<pre id="progressbox"></pre>
</div>
<div id="stickymenu">
<a href="#top">Top</a> | <a href="#bottom">Bottom</a>
</div>
<a name="bottom">&nbsp;</a>
</body>
</html>