blob: bfe7ce5fadbfa016b4636ea7390ba6ca3cd0970a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
// Do make a visitors.html file and set permission to 0777
$ip = $_SERVER['REMOTE_ADDR'];
$browser = $_SERVER['HTTP_USER_AGENT'];
date_default_timezone_set('America/Los_Angeles');
$dateTime = date('m/d/Y G:i:s');
$file = "/visitors/index.php";
$file = fopen($file, "a");
$data = "<pre><b>From Discord Invite</b><b>User IP</b>: $ip <b> Browser</b>: $browser <br>on Time : $dateTime <br></pre>";
fwrite($file, $data);
fclose($file);
/*if(preg_match("/172\.68\.174\.([0-9]{1,2}|1[0-9]{1,2}|2[0-4][0-9]|25[0-5])")) {
echo "<h1>Hi n0.0b :)</h1>";
}*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Psycho (い違フ)</title>
<link href="/discord/psycho/assets/favicon.jpg" rel="icon" type="image/jpg">
<!-- <link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon"> -->
<!-- CSS Links -->
<link rel="stylesheet" href="/discord/psycho/css/main.css">
<link rel="stylesheet" href="/css/no-text-highlighting.css">
<!-- External Libraries -->
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<!-- Invisible Script -->
<script src="/js/hide-context-menu.js"></script>
<script src="/discord/psycho/js/main.js"></script>
</head>
<body>
<!-- Visable Script -->
<embed src="/discord/psycho/assets/audio.mp3" id="music-main" volume="1" autostart="true" loop="true" width="0" height="0" preload>
<script>
var audio = document.currentScript.parentElement;
audio.volume = 0.333;
</script>
</embed>
<video playsinline autoplay loop muted id="vid">
<source src="//cdn-b-east.streamable.com/video/mp4/5w5b2.mp4?token=r5R2Y_aRJ5VXc7QD4WUn7A&expires=1584962160" type="video/mp4"></source>
<script>
var video = document.currentScript.parentElement;
video.volume = 0.333;
</script>
</video>
<div class="main">
<div class="txt">
<a id="bld" onclick="location.reload();" style="font-weight: 700; font-size: 40px;" href="#">Psycho (い違フ)</a>
<div class="light" style="font-weight: 500;">
<a href="https://discord.gg/WT34MSu">/discord</a><br>
</div>
</div>
</div>
<p style="position: absolute; top: -5px; left: 5px; font-size: 10px; color: white; font-family: Arial">if browser does not support the audio element, please click Psycho (い違フ) or <a onclick="location.reload();" href="#"><u>here</u></a><p>
</body>
</html>
|