forked from 4sureNotDew/KaliLinuxSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
212 lines (196 loc) · 5.94 KB
/
index.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<html>
<title>HolderOS</title>
<link rel="icon" href="favicon.ico" type="image/ico">
<style>
body {
background-image: url("giphy.gif");
background-color: #cccccc;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.terminal-window {
margin: auto;
width: 600px;
height: 360px;
border-radius: 10px;
position: relative;
}
.terminal-window header {
background: #E0E8F0;
height: 30px;
border-radius: 8px 8px 0 0;
padding-left: 10px;
}
.terminal-window header .button {
width: 12px;
height: 12px;
margin: 10px 4px 0 0;
display: inline-block;
float: right;
border-radius: 8px;
}
.terminal-window header .button.green {
background: #3BB662;
}
.terminal-window header .button.yellow {
background: #E5C30F;
}
.terminal-window header .button.red {
background: #E75448;
}
.terminal-window header .text {
display: inline-block;
font-family: letter-gothic-std, monospace;
color: #60646b;
margin: 4px 0 0 220px;
text-align: center;
}
.terminal-window section.terminal {
color: white;
font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier";
font-size: 11pt;
background: rgba(18, 20, 22, 0.8);
padding: 10px;
box-sizing: border-box;
position: absolute;
width: 100%;
top: 30px;
bottom: 0;
overflow: auto;
}
.terminal-window section.terminal .typed-cursor {
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
.terminal-data { display: none; }
.terminal-window .gray { color: gray; }
.terminal-window .green { color: green;}
</style>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<div class="terminal-window">
<header>
<div class="text">root@kali: Adam_Holder</div>
<div class="button red"></div>
<div class="button yellow"></div>
<div class="button green"></div>
</header>
<section class="terminal">
<div class="history"></div>
$ <span class="prompt"></span>
<span class="typed-cursor"></span>
</section>
</div>
<!-- data -->
<div class="terminal-data mimik-run-output">
<br>dew<br>
----------------------------------------------<br>
Adam Holder's Information<br><br>
Links:<br>
<span class="green">-</span> <a class="gray" href="https://www.unknowncheats.me/forum/members/2202635.html" style="text-decoration:none" target="_blank">uc</a><br>
<span class="green">-</span> <a class="gray" href="https://steamcommunity.com/id/jihadew/" style="text-decoration:none" target="_blank">steam</a><br>
<span class="green">-</span> <a class="gray" href="./menu/menu.html" style="text-decoration:none" target="_blank">project 1</a><br>
<br>
<span class="gray"> ------------------ -------- ------- -------- --------</span><br>
AppName Access pid Status Memory<br>
<span class="gray"> ------------------ -------- ------- -------- --------</span><br>
Adam_Holder_Info full 1998 <span class="green">online</span> 21.7 MB <br>
<br>
<span class="green">Adam_Holder_Info has successfully launched!</span><br>
<br>
</div>
<script src="jquery.min.js"></script><script src="typed.custom.js"></script>
<script>$(function() {
var data = [
{
action: 'type',
strings: ["npm install -g Adam_Holder_Info^400"],
output: '<span class="gray">[email protected] installed</span><br> ',
postDelay: 1000
},
{
action: 'type',
strings: ["cd Adam_Holder_Info^400"],
output: ' ',
postDelay: 1000
},
{
action: 'type',
strings: ['Adam_Holder_Info start^400'],
output: $('.mimik-run-output').html()
},
{
action: 'type',
strings: ["Welcome t^1200","Welcome to my info page!",],
output: '',
postDelay: 2000
}
];
runScripts(data, 0);
});
function runScripts(data, pos) {
var prompt = $('.prompt'),
script = data[pos];
if(script.clear === true) {
$('.history').html('');
}
switch(script.action) {
case 'type':
// cleanup for next execution
prompt.removeData();
$('.typed-cursor').text('');
prompt.typed({
strings: script.strings,
typeSpeed: 30,
callback: function() {
var history = $('.history').html();
history = history ? [history] : [];
history.push('$ ' + prompt.text());
if(script.output) {
history.push(script.output);
prompt.html('');
$('.history').html(history.join('<br>'));
}
// scroll to bottom of screen
$('section.terminal').scrollTop($('section.terminal').height());
// Run next script
pos++;
if(pos < data.length) {
setTimeout(function() {
runScripts(data, pos);
}, script.postDelay || 1000);
}
}
});
break;
case 'view':
break;
}
}
</script>
<audio autoplay loop>
<source src="acedia.mp3" type="audio/mpeg">
</audio>
</html>