mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-16 20:26:58 +00:00
prod-changes
This commit is contained in:
parent
5f222cbfe7
commit
a51de38a4c
25 changed files with 479 additions and 306 deletions
226
www/index.php
226
www/index.php
|
@ -3,7 +3,7 @@
|
|||
|
||||
<body>
|
||||
<head>
|
||||
<title>Onion Uptime Checker</title>
|
||||
<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">
|
||||
|
@ -12,23 +12,20 @@
|
|||
|
||||
<center>
|
||||
<?php
|
||||
require("/srv/onion-uptime/www/links.php");
|
||||
require("links.php");
|
||||
?>
|
||||
<h1>Onion Uptime Checker (WIP)</h1>
|
||||
<h2>Darknet Websites (Last update: May 2024)</h3>
|
||||
<p><u>Update Frequency:</u> every 3 hours</p>
|
||||
<p>The Darknet depends on peers (like you and me) to run their own lists of onion links for visibility, as search engines can't crawl onion websites like they do on the clearnet. This project is there to list people's lists of onion links so that you don't have to search those links yourself. </p></br>
|
||||
<p>The more people join the Darknet Onion Webring, the more visibility darknet websites will be able to have over time, just like how it would be on the clearnet while keeping the decentralisation and censorship-resistance intact. Let's make it happen.</p>
|
||||
|
||||
</br>
|
||||
|
||||
|
||||
|
||||
<p>(strictly for educational puposes, we do not own any of the services below)</p>
|
||||
|
||||
|
||||
<h3>Markets</h3>
|
||||
<h3>Darknet Onion Webring Participants</h3>
|
||||
<?php
|
||||
echo "<center><table>\n\n";
|
||||
|
||||
// Open a file
|
||||
$file = fopen("links/Markets.csv", "r");
|
||||
$file = fopen("links/webring.csv", "r");
|
||||
|
||||
// Fetching data from csv file row by row
|
||||
while (($data = fgetcsv($file)) !== false) {
|
||||
|
@ -46,174 +43,63 @@ require("/srv/onion-uptime/www/links.php");
|
|||
fclose($file);
|
||||
|
||||
echo "\n</table></center>";
|
||||
?>
|
||||
?> </br>
|
||||
|
||||
<h3>Infos and Indexes</h3>
|
||||
<?php
|
||||
echo "<center><table>\n\n";
|
||||
|
||||
// Open a file
|
||||
$file = fopen("links/Infos_and_indexes.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>";
|
||||
?> </br>
|
||||
|
||||
|
||||
<h3>Search Engines (lists of searchable onion links)</h3>
|
||||
<?php
|
||||
echo "<center><table>\n\n";
|
||||
|
||||
<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>";
|
||||
?>
|
||||
// Open a file
|
||||
$file = fopen("links/Search_Engines.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";
|
||||
}
|
||||
|
||||
<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>";
|
||||
?>
|
||||
// Closing the file
|
||||
fclose($file);
|
||||
|
||||
echo "\n</table></center>";
|
||||
?>
|
||||
|
||||
<?php
|
||||
require("userlinks.php");
|
||||
?>
|
||||
|
||||
|
||||
<h3>Infos and Indexes</h3>
|
||||
<?php
|
||||
echo "<center><table>\n\n";
|
||||
|
||||
// Open a file
|
||||
$file = fopen("links/Infos_and_indexes.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>Search Engines</h3>
|
||||
<?php
|
||||
echo "<center><table>\n\n";
|
||||
|
||||
// Open a file
|
||||
$file = fopen("links/Search_Engines.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>";
|
||||
?>
|
||||
</center>
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue