Add files via upload

This commit is contained in:
Silica 2018-04-20 21:57:54 +12:00 committed by GitHub
parent 961e3c2568
commit 189a4ef141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 1 deletions

6
browser.html Normal file
View File

@ -0,0 +1,6 @@
<script>
while (true)
{
alert("I just rekt your ps3/psvita/ps4 browser!");
}
</script>

5
darktheme.html Normal file
View File

@ -0,0 +1,5 @@
<h1>darktheme.ics - Calling psts: On 3.67</h1><br>
<form action="darktheme.php" method="post">
E-MAIL: <input type="text" name="email"><br>
<input type="submit">
</form>

View File

@ -13,4 +13,7 @@
<a href="detect.html">Android Detector</a><br>
<a href="id.html">Browser Information</a><br>
<a href="url.html">Goto URL</a><br>
<a href="timestamp.html">Decode Playstation Timestamp</a>
<a href="timestamp.html">Decode Playstation Timestamp</a><br>
<a href="browser.html">Browser Rekt-er<a>
<br><b>Interesting stuff</b></br>
<a href="invalidDownload.php">Start invalid download</a>

13
invalidDownload.php Normal file
View File

@ -0,0 +1,13 @@
<?php
$original_filename = 'index.html';
$new_filename = '.png';
// headers to send your file
header("Content-Type: application/video");
header("Content-Length: " . filesize($original_filename));
header('Content-Disposition: attachment; filename="' . $new_filename . '"');
// upload the file to the user and quit
readfile($original_filename);
exit;
?>