first upload bruh
|
@ -0,0 +1 @@
|
|||
videos/
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>About Bizcochito</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="about">
|
||||
<div class="centercubeplease">
|
||||
<h1>So hey, you want to know more about me. Here u have!</h1>
|
||||
<div class="centercubeplease2">
|
||||
<p>A thing i need to say is that this page one day could be deprecated bc of me just not remembering to change anything.</p>
|
||||
|
||||
<h2>Index</h2>
|
||||
<ul>
|
||||
<li><a href="#how">How to adress me</a></li>
|
||||
<li><a href="#who">Who i am</a></li>
|
||||
<li><a href="#what">What i am</a></li>
|
||||
<li><a href="#where">Where to contact me</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="how">How to adress me</h2>
|
||||
<p>
|
||||
So first of all if you are not gonna adress me directly or you don't know me yet just call me Bizcochito!<br/>
|
||||
</p>
|
||||
<h3>You can call me:</h3>
|
||||
<ul>
|
||||
<li>Yari</li>
|
||||
<li>Alicia</li>
|
||||
<li>Maria</li>
|
||||
<li>Bizcochito</li>
|
||||
</ul>
|
||||
|
||||
<p>Also if you are gonna "pronoun" me, please think before if u can just use the name "Yari" that is literaly like "They" long.</p>
|
||||
<h3>If you insist in using pronouns you can use this<strong>(in order of preference)</strong>:</h3>
|
||||
<ul>
|
||||
<li><strong>My names</strong></li>
|
||||
<li>It</li>
|
||||
<li>They</li>
|
||||
<li>*neoponouns*</li>
|
||||
<li>She</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="who">Who i am</h2>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
|
||||
<h2 id="what">What i am</h2>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
|
||||
<h2 id="where">Where to contact me</h2>
|
||||
<ul class="pointless">
|
||||
<li><a href="xmpp:bizcochito@fai.su"><img style='border:0px;height:36px;' src='https://xmpp.org/images/logos/xmpp-logo.svg' alt='XMPP' /></a></li>
|
||||
<li><a href="mailto:bizcochito@anartist.org"><img style='border:0px;height:36px;' src='https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/%28at%29.svg/170px-%28at%29.svg.png' alt='Personal Mail'/></a><a href="pgpkey.txt">PGP key</a></li>
|
||||
<li><a href="https://mk.nixnet.social/@MeDueleLaTeta"><img style='border:0px;height:36px;' src='https://upload.wikimedia.org/wikipedia/commons/9/93/Fediverse_logo_proposal.svg' alt='Pleroma' /></a></li>
|
||||
<li><a href="/">IDK return back</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,4 @@
|
|||
<a href=""><img src="ads/hor/orb.gif" alt="Silly ad of engarging your orb"></a>
|
||||
<a href=""><img src="ads/hor/ie.png" alt="Silly ad of internet explorer 3.0"></a>
|
||||
<a href=""><img src="ads/hor/ram.png" alt="Download more RAM"></a>
|
||||
<a href=""><img src="ads/hor/lies.jpg" alt="Insert lies here!"></a>
|
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 246 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 696 KiB |
|
@ -0,0 +1,84 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>THE GUESTBOOK</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="index">
|
||||
<?php
|
||||
// define variables and set to empty values
|
||||
$name = $email = $capcha = $comment = $website = $nameErr = $hosting = $capchaErr = "";
|
||||
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
if (empty($_POST["name"])) {
|
||||
$nameErr = "Name is required";
|
||||
} else {
|
||||
$name = "\"".test_input($_POST["name"])."\"";
|
||||
}
|
||||
$email = "\"".test_input($_POST["email"])."\"";
|
||||
$website = "\"".test_input($_POST["website"])."\"";
|
||||
$comment = "\"".test_input($_POST["comment"])."\"";
|
||||
if ($_POST["capcha"] !== "I love me") {
|
||||
$capchaErr = "You stupid fucking dingus";
|
||||
} else {
|
||||
$capcha = test_input($_POST["capcha"]);
|
||||
}
|
||||
if(strpos($_SERVER["HTTP_HOST"], ".onion")){
|
||||
$hosting = "tor!";
|
||||
}
|
||||
elseif(strpos($_SERVER["HTTP_HOST"], ".i2p")){
|
||||
$hosting = "i2p!";
|
||||
}
|
||||
elseif(strpos($_SERVER["HTTP_HOST"], ".fai")){
|
||||
$hosting = "fai!";
|
||||
}
|
||||
else{$hosting = "???!";}
|
||||
$myfile = fopen("signs.csv", "a") or die("Unable to open file!");
|
||||
$txt = $name.",".$website.",".$email.",".$comment.",".date("Y-m-d").",".$hosting."\n";
|
||||
fwrite($myfile, $txt);
|
||||
fclose($myfile);
|
||||
}
|
||||
|
||||
function test_input($data) {
|
||||
$data = trim($data);
|
||||
$data = stripslashes($data);
|
||||
$data = htmlspecialchars($data);
|
||||
return $data;
|
||||
}
|
||||
?>
|
||||
<div class="centercubepleaseind">
|
||||
<h1>Cool signers:</h1>
|
||||
<p style="text-align: left;">
|
||||
<?php //CSV FRIEND READ
|
||||
$csv = 'signs.csv';
|
||||
$signers = [];
|
||||
$f = fopen($csv, 'r');
|
||||
if ($f === false) { die('Cannot open the file ' . $csv); }
|
||||
// read each line in CSV file at a time
|
||||
while (($row = fgetcsv($f)) !== false) { $signers[] = $row; }
|
||||
fclose($f);
|
||||
|
||||
foreach($signers as $datasing){
|
||||
echo $datasing[5]."* At <span style=\"font-weight: bold;\">".$datasing[4]."</span> <a href=\"".$datasing[1]."\">".$datasing[0]."</a> said: <span style=\"font-weight: bold;\">".$datasing[3]."</span>.";
|
||||
if($datasing[2]){echo " Pester on: <a href=\"mailto:".$datasing[2]."\">".$datasing[2]."</a>";}
|
||||
echo "<br>";
|
||||
} ?>
|
||||
</p>
|
||||
</div>
|
||||
<div class="centerade">
|
||||
<h2>Be part of this cool babes!</h2>
|
||||
<p>
|
||||
<form style="text-align: center;" method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">
|
||||
Name: <input type="text" name="name"><span style="color: red;" class="error">* <?php echo $nameErr;?></span>
|
||||
Website: <input type="text" name="website">
|
||||
E-mail: <input type="text" name="email"><br>
|
||||
Comment: <textarea name="comment" rows="1" cols="100"></textarea><br>
|
||||
Capcha(Say me that you love "me"): <input type="text" name="capcha"><span style="color: red;" class="error">* <?php echo $capchaErr;?></span><br>
|
||||
<input type="submit">
|
||||
</form>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>THE INDEX</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="index">
|
||||
<div class="centercubepleaseind" style="text-align: center">
|
||||
Funni gifs<br/>
|
||||
<a href=""><img style="height: 50px;" src="gif/banana.gif" alt="Dancing banana"></a>
|
||||
<a href="videos/hatkid.mp4"><img style="height: 50px;" src="gif/hatkid.gif" alt="Hat kid"></a>
|
||||
<a href=""><img style="height: 50px;" src="gif/blobcat.gif" alt="Dancing blobcat"></a>
|
||||
<a href=""><img style="height: 50px;" src="gif/cassette.gif" alt="Cute Cassette"></a>
|
||||
<a href=""><img style="height: 50px;" src="gif/parrot.gif" alt="Dancing parrot"></a>
|
||||
<a href=""><img style="height: 50px;" src="gif/pumpum.gif" alt="Pumpum being patted"></a>
|
||||
<a href=""><img style="height: 50px;" src="gif/xd.gif" alt="XD"></a>
|
||||
<a href="videos/gotyewokeuplikethisaliens-aq2w_Zm2K3c.mp4"><img src="gif/I‘m-not-a-robot.gif" alt="Im, not a robot"></a>
|
||||
<a href=""><img src="gif/milk.png" alt="Milk gal"></a>
|
||||
<br>
|
||||
<a href=""><img src="gif/enby.gif" alt="Enby to death"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 7.2 MiB |
|
@ -0,0 +1,15 @@
|
|||
banana.gif
|
||||
blobcat.gif
|
||||
cassette.gif
|
||||
discord.gif
|
||||
drancinmoe.gif
|
||||
enby.gif
|
||||
gifs.txt
|
||||
hatkid.gif
|
||||
ie.gif
|
||||
I‘m-not-a-robot.gif
|
||||
linux.png
|
||||
milk.png
|
||||
parrot.gif
|
||||
pumpum.gif
|
||||
xd.gif
|
After Width: | Height: | Size: 438 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 272 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 125 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 126 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 527 B |
|
@ -0,0 +1,59 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>THE INDEX</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="index">
|
||||
<div class="centerade">
|
||||
<a href="https://fediring.net/previous?host=yari.fai.st"><img style="height: 30px; width: auto;" src="icons/last.png" alt="LAST"></a>
|
||||
<a href="https://fediring.net/"><img style="height: 30px; width: auto;" src="icons/fediring.png" alt="FEDIRING"></a>
|
||||
<a href="https://fediring.net/next?host=yari.fai.st"><img style="height: 30px; width: auto;" src="icons/next.png" alt="NEXT"></a>
|
||||
</div>
|
||||
<script>
|
||||
document.write("<div class=\"centercubepleaseind\">To see the website please disable JS<br></div>")
|
||||
</script>
|
||||
<noscript>
|
||||
<div class="centercubepleaseind">
|
||||
<h1>I'm bizcochito, hey!</h1>
|
||||
<a href="http://v25cldsbgmmllb7emzrefrh57ugu53z534lcs53coi3tlhiin6va6kad.onion">Onionsite mirror</a><br/>
|
||||
<a href="http://nlohuquv5gaqnhfdeano77ftswnfg674jet5qeualztoxtmsceka.b32.i2p">Eepsite mirror</a>
|
||||
<br/><br/>
|
||||
-Pages:<br/>
|
||||
<a href="about.html">-About me</a><br/>
|
||||
<a href="funni.html">-Gifs</a><br/>
|
||||
<a href="kisses.html">-Kisses</a><br/>
|
||||
<br/>
|
||||
-Extra stuf<br/>
|
||||
<a href="sixpaired">-Sixpaired</a><br/>
|
||||
<a href="book.php">-Signbook</a><br/>
|
||||
<br/>
|
||||
-Funni gifs<br/>
|
||||
<a href="http://spywareitdaiuyfo2sqb5vsg7mek5cjabdr73luhnda57t2hyuzg7yyd.onion/articles/explorer.html"><img src="gif/ie.gif" alt="Get microsoft internet explorer"></a>
|
||||
<a href="http://spywareitdaiuyfo2sqb5vsg7mek5cjabdr73luhnda57t2hyuzg7yyd.onion/articles/discord.html"><img src="gif/discord.gif" alt="Discord? No way"></a>
|
||||
<a href="https://www.debian.org/intro/why_debian"><img src="gif/linux.png" alt="Powered by linux"></a><br/>
|
||||
<br/>
|
||||
-Frens(onions):<br/>
|
||||
<a href="http://jtxkyle56vrelrjsrun5kvymkeak5oxo773agx6oj6cdx4gu7j2bgvqd.onion"><img style="height: 30px;" src="icons/dendy.png" alt="dendy.cat"></a>
|
||||
<a href="http://lainwir3s4y5r7mqm3kurzpljyf77vty2hrrfkps6wm4nnnqzest4lqd.onion"><img style="height: 30px;" src="icons/qorg11.gif" alt="qorg11.net"></a>
|
||||
<!--<a href="http://.onion">🥐🍩☕</a>
|
||||
<a href="http://.onion">🍎🦁</a>
|
||||
<a href="http://.onion"><img style="height: 30px;" src="icons/striker.png" alt="striker.net.eu.org"></a> -->
|
||||
<a href="http://moth7kzeri7kdnhla5cydl7anhskmocjy4vrcm4rmzte7uvm64ug54id.onion/"><img style="height: 30px;" src="icons/moth.png" alt="moth.monster"></a>
|
||||
</div>
|
||||
<div class="centerade">
|
||||
<?php
|
||||
$adslist = fopen("ads/ads", "r") or die("Unable to open file!");
|
||||
// Output one line until end-of-file
|
||||
while(!feof($adslist)) {
|
||||
$adarray[] = fgets($adslist);
|
||||
}
|
||||
fclose($adslist);
|
||||
echo $adarray[array_rand($adarray, 1)]
|
||||
?>
|
||||
</div>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,102 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>THE INDEX</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="index">
|
||||
<div class="centercubepleaseind">
|
||||
<h1>KISSING</h1>
|
||||
|
||||
<br/><br/>Me and Ariel kissing<br/><br/>
|
||||
<pre style="font-size: 9px; text-align: center;">
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WhhhhhhhhhhhhhW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WhhhhhhhhhhhhhW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WhhhhhhhhhhhhhW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Whhhhhhhhhhhhh8RRRRW@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BHhhhhhhhhhhhhhhhhhhMddddW@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@@@WWWWWW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Nhhhhhhhhhhhhhhhhhhhhhhhhq8@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@Wh))))))}RW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@NhhhhhhhhhhhhhhhhhhhhhhhhhN@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@Z)))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BHhhhhhhhhhhhhhhhhhhhhhhhhN@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@Z)))))))))uqW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WhhhhhhhhhhhhhhhhhhhhhhhhN@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@Z)))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WdhhhhhhhhhhhhhhdWdhhhhdW@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@@Z)))))))))))zK@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BhhhhhhhhhhhhhhMdBWWWW@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@@Ro))))))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WdhhhhhhhhhhhhhhhRW@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@@@@@@@@@@@@@B))))))))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@hhhhhhhhhhhhhhhhhW@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@@WffffffffR@@B))))))))))))))))zfW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@hhhhhhhhhhhhhhhhh8W@@@@@@@@@@@@@@@@@@@@@@@
|
||||
@@@@@qo))))))))zfWB))))))))))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WBhhhhhhhhhhhhhhhhN@@Wffffffffffffffffffff
|
||||
@@@@@e)))))))))))BB))))))))))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@yeeee@Whhhhhhhhhhhhhhhhyee}********************
|
||||
@@@@@e)))))))))))||))))))))))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@q|)****|zhhhhhhhhhhhKyyyv?***********************
|
||||
@@@@@e)))))))))))))))))))))))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z*******xoyhhhhhhhhhov?**************************
|
||||
@@@@@e)))))))))))))))))))))))))))))))B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Wqe*********JhhhhhhhhhhhJ**************************
|
||||
@@@@@e)))))))))))))))))))))))))))))uqW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Raaw***********|zyhhhhhhhhhJ**************************
|
||||
@@@@@e)))))))))))))))))))))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@We|****************|zhhhhhhov?**************************
|
||||
@@@@@e)))))))))))))))))))))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@W}**********************************************************
|
||||
@@@@@e))))))))))))))*r)))))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@WRRo************************************************************
|
||||
@@@Rf|))))))))))))))!:!r)))))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Wqe***************************************************************
|
||||
@WJ*=r))))))))))))))!,,:^*)))))))))Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Rffw*****************************************************************
|
||||
?*===r))))))))))))))!,,,=>~~^))))}RW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@He|********************************************************************
|
||||
,,,^*))))))))))))))*^,,,,,=,=\!*NW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Wd|?***********************)?}|)******************************************
|
||||
,,,!))))))))))))))r=,,,,,,,,,,=,d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@z************************)?}JJJJ???)**************************************
|
||||
=\~!))))))))))))))r=,,,,,,,,,,,=aR@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J************************|JJJJJJJJJv?)************************************
|
||||
,>)))))))))))))))r^==,,,,,,,,,,,=!fR@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@gq|************************|JJJJJJJJJJJv?***********************************
|
||||
!r)))))))))))))))>=,,,,,,,,,,,,,,,=*JJJJJJJJJJJJf@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@K**************************od88888JJJJJJzvvv)*******************************
|
||||
)))))))))))))))))>,,,,,,,,,,,,,,,,,,=,,,,,,,,,,=~?h@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@K************************vRW@@@@@@gdJJJJJJv?)*******************************
|
||||
)))))))))))))))!==,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,==d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B**************************J@@@@@@@@gdJJJJzcx*********************************
|
||||
)))))))))))))))!,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,==Jq@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B**************************J@@@@@dddJJJJJJc***********************************
|
||||
)))))))))))))))!,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=,,)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B**************************J@@@dKJJJJJJJJv?***********************************
|
||||
)))))))))))))r^>,,,,,,,,,,,,,,~!!!!!!!^==,,,,,,,,,,,,)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@qw**************************J@gqoJJJJJJJJJ?************************************
|
||||
)))))))))))))!,,,,,,,,,,,,,,,,!))))))))r~=,,,,,,,,,,=)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J***************************|yoJJJJJJJJJJJ?************************************
|
||||
))))))))))))*^==,,,,,,,,,,,,,,!))))))))))*,,,,,,,===hW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@W}************************))vzJJJJJJJJJJJJJ?************************************
|
||||
rrrrrrrrrrr!====,,,,,,,,,,,,,,!)))))))))))~>=,,,,,,,d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@K**************************zyyaJJJJJJJJJJJJJ?************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=!))))))))))))r,,,,,,,,d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Wqe************************xaR@@WqqqqKJJJJJJJJ?************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,=,\!r))))))))))))r,,,,,,,,d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B************************|qd@@@@@@@@@@888JJJJJv|***********************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,:rr))))))))))))))r,,,,,,,,d@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B***********************hg@@@@@@@@@@@@@@@gggggac***********************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,r****)))))))))))))r,,,,,,,,,*W@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***********************))}JJJJqWWWW@@@@@@@@@@@@@g|?*********************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,\>r*******))))))))))r,,,,,,,,,,,o@@@@@@@@@@@@@@@@@@@@@@@@@@@@***********************|JJJJJJJJJJJhggggW@@@@@@@@@He?*******************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,^***********))))))))*^:,,,,,,,,,?fR@@@@@@@@@@@@@@@@@@@@@@@@@@fw*********************|JJJJJJJJJJJJJJJJyd888W@@@@@@z*******************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,^***********))))))))))r!:,,,,,,,=,o@@@@@@@@@@@@@@@@@@@@@@@@@@@B*******************)v}JJJJJJJJJJJJJJJJJJJJJaqqqqqq|*******************************
|
||||
,,,,,,,,,,,,,,,,,,,,,:!r*********))))))))))))))>=,,,,,,==)uW@@@@@@@@@@@@@@@@@@@@@@@@@B*******************?JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ?*******************************
|
||||
,,,,,,,,,,,,,,,,,,,,,>*****))))))))))))))))))))*r:=,,,,=:!)NW@@@@@@@@@@@@@@@@@@@@@@@@B*******************?JJJJJJJJJJJJJJJJJJJJJJJJJJJJv))*******************************
|
||||
,,,,,,,,,,,,,,,,,=,=\^*)))))))))))))))))))))))))))!==,,~r*))}RRRRRRRRRRRW@@@@@@@@@@@Rh*******************?JJJJJJJJJJJJJJJJJJJJJJJJJJJJ|*********************************
|
||||
,,,,,,,,,,,,,,,,=:>>!*))))))))))))))))))))))))))))!~=,,==!))))))))))))))oR@@@@@@@@WR*********************?JJJJJJJJJJJJJJJJJJJJJJJJJJzcx*********************************
|
||||
,,,,,,,,,,,,,,,,=r))))))))))))))))))))))))))))))))))>,,=,!))))))))))))))))f8@@@@@dw*********************?vJJJJJJJJJJJJJJJJJJJJJJJJJJc***********************************
|
||||
,,,,,,,,,,,,,,=~!*))))))))))))))))))))))))))))))))))>,,=,!)))))))))))))))))|fR@8KJ|*******************)v}JJJJJJJJJJJJJJJJJJJJJJJJJJv?***********************************
|
||||
,,,,,,,,,,,,,,,:~*))))))))))))))))))))))))))))))))))>,,=,!)))))))))))))))))))Z@fJJ|******************|}JJJJJJJJJJJJJJJJJJJJJJJJJJv?)************************************
|
||||
,,,,,,,,,,,,,,,,=r))))))))))))))))))))))))))))))))))>,,==!)))))))))))))))))))vJJJJ|****************)?}JJJJJJJJJJJJJJJJJJJJJJJJJzcx**************************************
|
||||
,,,,,,,,,,,,,,,,=r))))))))))))))))))))))))))))))))))!~=>^r)))))))))))))))))))vJJJJ|****************|JJJJJJJJJJJJJJJJJJJJJJJJJJJc****************************************
|
||||
,,,,,,,,,,,,,,,,=r)))))))))))))))))))))))))))))))))))*!r)))))))))))))))))))))vJJJJ|****************|JJJJJJJJJJJJJJJJJJJJJJJJJJJc****************************************
|
||||
,,,,,,,,,,,,,,,,=r)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))!\|JJ|****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|?****************************************
|
||||
,,,,,,,,,,,,,,,,=r))))))))))))))))))))))))))))))))))))))))))))))))))))))))))), )JJ|**************xc}JJJJJJJJJJJJJJJJJJJJJJJJJJ******************************************
|
||||
,,,,,,,,,,,,,,,,=r))))))))))))))))))))))))))))))))))))))))))))))))))))))))))r, )JJ|**************|JJJJJJJJJJJJJJJJJJJJJJJJJJz}******************************************
|
||||
,,,,,,,,,,,,,,,,=!r))))))))))))))))))))))))))))))))))))))))))))))))))))))))!.` ^*****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,>))))))))))))))))))))))))))))))))))))))))))))))))))))))))r:. ,, ,**************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,>))))))))))))))))))))))))))))))))))))))))))))))))))))))))! )v!r**************|JJJJJJJJJJJJJJJJJJJJJJJJ}|?*******************************************
|
||||
,,,,,,,,,,,,,,,,,,>))))))))))))))))))))))))))))))))))))))))))))))))))))))))^ )JJ|**************|JJJJJJJJJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,>)))))))))))))))))))))))))))))))))))))))))))))))))))))))r~ ``!xJ|**************|JJJJJJJJJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,=>^)))))))))))))))))))))))))))))))))))))))))))))))))))))))-`.~))?cx**************|JJJJJJJJJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,==^r)))))))))))))))))))))))))))))))))))))))))))))))))))))))--)))))****************|JJJJJJJJJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,\^^^^r))))))))))))))))))))))))))))))))))))))))))))))))))--)))))****************|JJJJJJJJJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,:~*))))))))))))))))))))))))))))))))))))))))))))))~.>!)))))****************|JJJJJJJJJJJJJJJJJJJJJJJJzcx*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,=\~**)))))))))))))))))))))))))))))))))))))))))))*r)?vZW}*****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,:r*)))))))))))))))))))))))))))))))))))))))))))zK@@@J*****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=~r))))))))))))))))))))))))))))))))))))))))vuW@@@@J*****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,^r))))))))))))))))))))))))))))))))))|fffR@@@@@@J*****************|JJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,==\^r)))))))))))))))))))))))))))))))f8@@@@@@@@@@J***************vqaJJJJJJJJJJJJJJJJJJJJJJJJJJ|*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=,,,:~~^))))))))))))))))))))))))))oR@@@@@@@@@@Ne?***************J@WghJJJJJJJJJJJJJJJJJJJJJJ}?)*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,==,,,rrr*))))))))))))))))vK@@@@@@@@@@@@@Z*****************J@@@@@@@@BaJJJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=~!*))))))))))))|fR@@@@@@@@@@@@@@Z****************uq@@@@@@@@@WqaJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,~^^r))))))))f8@@@@@@@@@@@@@@@@gq|**************B@@@@@@@@@@@@HJJJJJJJJJJJJJJc*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,>^*))))uMW@@@@@@@@@@@@@@@@@@@J************eqW@@@@@@@@@@@@HJJJJJJJJJJJJJv?*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=>)RRRW@@@@@@@@@@@@@@@@@@@@@J************K@@@@@@@@@@@@@@HJJJJJJJJJJJJJ?**********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=*WW@@@@@@@@@@@@@@@@@@@@@@@J**********}W@@@@@@@@@@@@@@@HJJJJJJJJJJJJJ?**********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=,o@@@@@@@@@@@@@@@@@@@@@@@J*********}y@@@@@@@@@@@@@@@@HJJJJJJJJJJJJJ?**********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,o@@@@@@@@@@@@@@@@@@@@@@@J*******}aW@@@@@@@@@@@@@@@@8KJJJJJJJJJJJJJv?*********************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,=,o@@@@@@@@@@@@@@@@@@@@@@@J*******K@@@@@@@@@@@@@@@@@WJJJJJJJJJJJJJJJJzv?*******************************************
|
||||
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,rHW@@@@@@@@@@@@@@@@@@@@@@@J*****vRW@@@@@@@@@@@@@@@@RaJJJJJJJJJJJJJJJJJJ}c******************************************
|
||||
</pre>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,19 @@
|
|||
# All Is Mine Therefore Of All License
|
||||
|
||||
Version 0.0.1.0002
|
||||
|
||||
## Abstract
|
||||
|
||||
Just read the tittle.
|
||||
|
||||
## Copy Modify Share
|
||||
|
||||
All data will be copied modified and shared as much as the users need and want.
|
||||
|
||||
## Relicensing
|
||||
|
||||
All contents under this license must be kept free of charge.
|
||||
|
||||
## Limitation of Liability
|
||||
|
||||
The reader acknowledges and agrees that neither Licensor, the Licensee nor any entity in this place will be liable of any damage. Only god is therefore blameful for any atrocities commited under this lease.
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Is <?php echo $_SERVER['QUERY_STRING'] ?> online?</title>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<link href="icon.png" rel="icon">
|
||||
</head>
|
||||
<body id="about">
|
||||
<div class="centercubeplease">
|
||||
<h1>Is <?php echo $_SERVER['QUERY_STRING'] ?> online?</h1>
|
||||
<h2><?php function checkOnline($domain) {
|
||||
$curlInit = curl_init($domain);
|
||||
curl_setopt($curlInit,CURLOPT_CONNECTTIMEOUT,10);
|
||||
curl_setopt($curlInit,CURLOPT_HEADER,true);
|
||||
curl_setopt($curlInit,CURLOPT_NOBODY,true);
|
||||
curl_setopt($curlInit,CURLOPT_RETURNTRANSFER,true);
|
||||
|
||||
//get answer
|
||||
$response = curl_exec($curlInit);
|
||||
|
||||
curl_close($curlInit);
|
||||
if ($response) return true;
|
||||
return false;
|
||||
}
|
||||
if(checkOnline('http://'.$_SERVER['QUERY_STRING'])) {echo "yes"; }
|
||||
elseif(gethostbyname($_SERVER['QUERY_STRING']) == $_SERVER['QUERY_STRING']) {echo "That does not exist dummy";}
|
||||
else{echo "no";}
|
||||
?></h2>
|
||||
<p>Disclamer, this only checks if an http server is reacheable!</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,40 @@
|
|||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
MFhM19C7dY+9W0o=
|
||||
=WSZ9
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,79 @@
|
|||
body{
|
||||
background-color: #FFFFFF;
|
||||
color: #000000;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#index{
|
||||
background-image: url("background/index.png");
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#index a{
|
||||
color: #F0F0F0;
|
||||
}
|
||||
|
||||
|
||||
.centercubepleaseind{
|
||||
color: #000000;
|
||||
background-color: #5F8E76;
|
||||
border: 3px solid #527C46;
|
||||
width: 50%;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.centercubepleaseind img{
|
||||
max-width: 95%;
|
||||
}
|
||||
|
||||
#about{
|
||||
background-image: url("background/about.png");
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#about a{
|
||||
color: #FFF0F0;
|
||||
}
|
||||
|
||||
.centercubeplease{
|
||||
color: #FFF0F0;
|
||||
background-color: #990033;
|
||||
border: 3px solid #cc0066;
|
||||
width: 50%;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.centerade{
|
||||
width: 50%;
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.centerade img{
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.centercubeplease h1, h2, h3, p{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.centercubeplease a{
|
||||
color: #449494;
|
||||
}
|
||||
|
||||
|
||||
.pointless{
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hightlightpurple{
|
||||
background-color:#C00066;
|
||||
color:#FFFFFF
|
||||
}
|