blob: c32ffac0a45cf4dc625020512eac1e3ad8ff8c7c (
plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<!DOCTYPE html>
<html>
<head>
<title>Hello, world!</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="stylesheet" href="https://unpkg.com/xp.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="img/favicon.png">
<meta name="theme-color" content="">
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<meta name="twitter:card" content="">
<meta name="twitter:site" content="">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="">
</head>
<body>
<!--<h1>Draggable DIV Element</h1>
<p>Click and hold the mouse button down while moving the DIV element</p> -->
<div class="window draggable" style="height:250px;width:575px;overflow:hidden;background-color:#000000;top:312px;left:627px;">
<div class="title-bar divheader">
<div class="title-bar-text">😈 403 Directory Hostile Login Module</div>
<div class="title-bar-controls">
<!-- <button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button> -->
</div>
</div>
<div style="padding:5px;">
<div class="window-body" style="height:100%;">
<pre id="typing-text" readonly style="height:100%;" ></pre>
</div>
</div>
</div>
<div class="window draggable openable" style="width:310px;top:182px;left:304px;visibility:hidden;">
<div class="title-bar divheader">
<div class="title-bar-text">🚫 File 3: Illegal Login Attempt Detected</div>
<div class="title-bar-controls">
<button onclick="HideWindow(event)" aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Illegal Access Attempted.</p>
<p>You are <b>NOT</b> permitted to access this file.</p>
<p>This incident will be reported!</p>
</div>
</div>
<div class="window draggable openable" style="width:300px;top:655px;left:1088px;visibility:hidden;">
<div class="title-bar divheader">
<div class="title-bar-text">🚫 File 1: Illegal Login Attempt Detected</div>
<div class="title-bar-controls">
<button onclick="HideWindow(event)" aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Illegal Access Attempted.</p>
<p>You are <b>NOT</b> permitted to access this file.</p>
<p>This incident will be reported!</p>
</div>
</div>
<div class="window draggable openable" style="width:290px;top:591px;left:255px;visibility:hidden;">
<div class="title-bar divheader">
<div class="title-bar-text">🚫 File 4: Illegal Login Attempt Detected</div>
<div class="title-bar-controls">
<button onclick="HideWindow(event)" aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Illegal Access Attempted.</p>
<p>You are <b>NOT</b> permitted to access this file.</p>
<p>This incident will be reported!</p>
</div>
</div>
<div class="window draggable openable" style="width:350px;top:90px;left:934px;visibility:hidden;">
<div class="title-bar divheader">
<div class="title-bar-text">😳 File 2: Everything on Display</div>
<div class="title-bar-controls">
<button onclick="HideWindow(event)" aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>The hidden secrets are out. Everything we have gathered about the pretender who has been sleuthing and backstabbing us is all revealed. These documents are <b>Top Secret</b> and should not be shared so as not to tip off the imposter. When the time is right we will strike.</p>
<p style="text-align:center;"><button onclick="window.location.href='https://imposter.exposed';">Open Classified Files</button></p>
</div>
</div>
<script src='script.js'></script>
</body>
</html>
|