mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-17 04:36:57 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<body>
|
|
<head>
|
|
<title>Onion Uptime Checker</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<link rel="icon" href="/favicon.ico">
|
|
</head>
|
|
|
|
|
|
<center>
|
|
<?php
|
|
require("/srv/onion-uptime/www/links.php");
|
|
?>
|
|
<h1>Onion Uptime Checker (WIP)</h1>
|
|
<h2>Monero Nodes (Last update: September 2024)</h3>
|
|
<p><u>Update Frequency:</u> every 3 hours</p>
|
|
|
|
|
|
|
|
<p>(strictly for educational puposes, we do not own any of the services below)</p>
|
|
|
|
|
|
<h3>Nowhere Infrastructure</h3>
|
|
<?php
|
|
echo "<center><table>\n\n";
|
|
|
|
// Open a file
|
|
$file = fopen("links/Nowhere.csv", "r");
|
|
|
|
// Fetching data from csv file row by row
|
|
while (($data = fgetcsv($file)) !== false) {
|
|
|
|
// HTML tag for placing in row format
|
|
echo "<tr>";
|
|
foreach ($data as $i) {
|
|
echo "<td>" . htmlspecialchars($i)
|
|
. "</td>";
|
|
}
|
|
echo "</tr> \n";
|
|
}
|
|
|
|
// Closing the file
|
|
fclose($file);
|
|
|
|
echo "\n</table></center>";
|
|
?>
|
|
</center>
|
|
</body>
|
|
|
|
</html>
|