Initial commit (2 years later)

This commit is contained in:
Andrew Illarionov 2023-09-26 00:38:38 +03:00
commit 017fbeb8d1
11 changed files with 111 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

8
.idea/index.iml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/index.iml" filepath="$PROJECT_DIR$/.idea/index.iml" />
</modules>
</component>
</project>

19
.idea/php.xml Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MessDetectorOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCSFixerOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCodeSnifferOptionsConfiguration">
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpStanOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PsalmOptionsConfiguration">
<option name="transferred" value="true" />
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

BIN
images/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

35
index.html Normal file
View File

@ -0,0 +1,35 @@
<head>
<title>Click to Download</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<script>
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
document.querySelector('html').onclick = function() {
document.title = 'Downloading...';
var video=document.getElementById('myVideo');
video.style.cursor = 'default';
video.play();
video.addEventListener('ended', function() {
document.title = 'Download complete!';
sleep(3000);
window.location.replace('http://youtube.com/endermanch');
});
}
</script>
<style>
video {
cursor: pointer;
}
</style>
</head>
<video nocontrols id="myVideo" height=100% width=100%>
<source src="/media/download.mp4" type="video/mp4">
</video>

27
index2.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Free & Fast Downloads | fast-dl.xyz</title>
<style>
body {
background-image: url("images/background.png");
}
</style>
</head>
<body>
<center>
<h1>Fast & Free Downloads</h1>
<p>NoEscape is a trojan creepypasta made by Enderman in 2020. Many people would love to download its source code, but unfortunately it's closed-source...<br>until TODAY! Our good collaborator Noobes has decompiled and unpacked the trojan and so we present the fresh download link for it. Download <b>NOESCAPE</b> free source code RIGHT NOW (click the link below)</p>
<font size=15><a href="noescape-code.zip">DOWNLOAD NOW</a></font>
<h2>Video tutorial (how to download):</h2>
<video controls>
<source src="\media\how-to-download.mp4" type="video/mp4">
</video>
</center>
</body>
</html>

BIN
media/download.mp4 Normal file

Binary file not shown.

BIN
media/how-to-download.mp4 Normal file

Binary file not shown.

BIN
noescape-code.zip Normal file

Binary file not shown.