mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-27 07:59:59 -07:00
23 lines
598 B
HTML
23 lines
598 B
HTML
<html>
|
|
<head>
|
|
<title>ORCA</title>
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
<script src="js/main.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
setInterval(function() {
|
|
populateDivs();
|
|
}, 1000);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="downloads">
|
|
<span><a href="/api/pcap/latest.pcap">Latest PCAP</a></span>
|
|
<span><a href="/api/qmdl/latest.qmdl">Latest QMDL</a></span>
|
|
</div>
|
|
<pre id="system-stats">Loading...</pre>
|
|
<pre id="diag-stats">Loading...</pre>
|
|
</body>
|
|
</html>
|