mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-17 04:36:57 +00:00
prod-changes
This commit is contained in:
parent
5f222cbfe7
commit
a51de38a4c
25 changed files with 479 additions and 306 deletions
166
www/sensitive.php
Normal file
166
www/sensitive.php
Normal file
|
@ -0,0 +1,166 @@
|
|||
<!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("links.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("userlinks.php");
|
||||
?>
|
||||
|
||||
</center>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue