darknet-lantern/www/sensitive.php
2024-12-29 14:41:30 +01:00

166 lines
4.1 KiB
PHP

<!DOCTYPE html>
<html>
<body>
<head>
<title>Darknet Onion Webring</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("header.php");
?>
<h2>Sensitive Websites (Last update: May 2024)</h3></br>
<p>These are a lists of sensitive services. <b>I don't recommend using them without having implemented deniability in your opsec setup [<a href="http://blog.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/opsec/tailsqemuvm/index.html">1</a>] [<a href="http://blog.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/opsec/sensitivevm/index.html">2</a>]</b></p>
<p>(This page is strictly for educational puposes, we do not own any of the services below)</p>
<h3>Markets</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/Markets.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>";
?>
<h3>Exchanges</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/Exchanges.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>";
?>
<h3>Forums and Imageboards</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/Forums_and_Imageboards.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>";
?>
<h3>News</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/News.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>";
?>
<h3>Dead Markets</h3>
<?php
echo "<center><table>\n\n";
// Open a file
$file = fopen("links/Dead_Markets.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>";
?>
<?php
require("webring.php");
?>
</center>
</body>
</html>