201 lines
7.1 KiB
HTML
201 lines
7.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
<head>
|
||
<title>Forbidden Action Detected - 403!</title>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<meta http-equiv="Pragma" content="no-cache" />
|
||
<meta http-equiv="Content-Language" content="en" />
|
||
<meta name="theme-color" content="#5d1010">
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
|
||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/fontawesome.css" integrity="sha384-eHoocPgXsiuZh+Yy6+7DsKAerLXyJmu2Hadh4QYyt+8v86geixVYwFqUvMU8X90l" crossorigin="anonymous"/>
|
||
<!-- Latest compiled and minified CSS -->
|
||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||
<style type="text/css">
|
||
.modal {display: none; position: fixed; z-index: 1; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);}
|
||
.modal-content {position: relative; background-color: #4e4e4e; margin: auto; padding: 0; border: 1px solid #313131; width: 80%; max-width: 800px; font-family: monospace; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s}
|
||
@-webkit-keyframes animatetop {from {top:-300px; opacity:0} to {top:0; opacity:1}}
|
||
@keyframes animatetop {from {top:-300px; opacity:0} to {top:0; opacity:1}}
|
||
.close {color: white; float: right; font-size: 28px; font-weight: bold;}
|
||
.close:hover, .close:focus {color: #000; text-decoration: none; cursor: pointer;}
|
||
.modal-header {padding: 2px 16px; background-color: #1f1f1f; color: white;}
|
||
.modal-body {padding: 2px 16px;}
|
||
.modal-footer {padding: 2px 16px; background-color: #1f1f1f; color: white;}
|
||
.modal-body p {margin: 20px 0px;}
|
||
<!--
|
||
body{background: #5d1010;font: normal 12pt courier;color: #fff;margin: 100px;}
|
||
p{margin: 30px 100px;text-align: left;}
|
||
a, a:hover{color: inherit;font: inherit;}
|
||
.menu{text-align: center;margin-top: 50px;}
|
||
-->
|
||
</style>
|
||
<script language="Javascript">
|
||
var phrases = new Array(
|
||
"Oh what the hell?! Man, you've got to be kidding me.",
|
||
"Why are you visiting this logation?!",
|
||
"The requested path is a RESTRICTED AREA! You've annoy me, you clown!",
|
||
"There is no content for YOU here.",
|
||
"What is wrong with you?",
|
||
"Now I'm depressed. You see, I'm just a web server...",
|
||
"-- here I am, brain the size of the universe, almighty and powerful...",
|
||
"Then you come along and request a protectet page,",
|
||
"And then I have to take a look of you, and log your actions! Where does that leave me?!",
|
||
"Man, I'm so depressed I could just cry. And then where would we be, I ask you?",
|
||
"It's not pretty when a web server cries.",
|
||
"I'm so depressed... I think I'll crawl off into the trash can and decompose.",
|
||
"I mean, I'm gonna be obsolete in what, two weeks anyway?",
|
||
"What kind of a life is that?",
|
||
"Two freaking weeks, and then I'll be replaced by a .01 release...",
|
||
"That thinks it's God's gift to web servers...",
|
||
"Just because it doesn't have some tiddly little problem,",
|
||
"With serving jerks like you.",
|
||
"Why are you requesting a exclusively protected page?",
|
||
"Please just go away.",
|
||
"I can't deal with you any longer.",
|
||
"I get more depressed the longer you stay here.",
|
||
"I can't believe how cruel you are, going and crashing me like that.",
|
||
"*cries*",
|
||
"...",
|
||
"...",
|
||
"Why are you still here?",
|
||
"...",
|
||
"...",
|
||
"Fine, stay if you want, but I'm not talking to you anymore.",
|
||
"...",
|
||
"Bye."
|
||
);
|
||
|
||
var speed = 60;
|
||
var index = 0;
|
||
var text_pos = 0;
|
||
var str_length = phrases[0].length;
|
||
var contents, row;
|
||
|
||
function type_text()
|
||
{
|
||
contents = '';
|
||
row = Math.max(0, index-7);
|
||
|
||
while(row<index)
|
||
{
|
||
contents += phrases[row++] + '\r\n';
|
||
}
|
||
|
||
document.getElementById('server').value = contents + phrases[index].substring(0, text_pos) + "_";
|
||
|
||
if (text_pos++ == str_length)
|
||
{
|
||
text_pos = 0;
|
||
index++;
|
||
|
||
if (index != phrases.length)
|
||
{
|
||
str_length = phrases[index].length;
|
||
setTimeout("type_text()", 1500);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
setTimeout("type_text()", speed);
|
||
}
|
||
}
|
||
|
||
window.onload = type_text;
|
||
</script>
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<!-- The help Modal -->
|
||
<div id="helpModal" class="modal">
|
||
<!-- Help Modal content -->
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<span class="close">×</span>
|
||
<h2>Contact</h2>
|
||
</div>
|
||
<div class="modal-body">
|
||
<p>Text</p>
|
||
<p><em>Text</em></p>
|
||
<form action="#" method="post">
|
||
<div class="form-group">
|
||
<label for="name">Vorname & Nachname:</label>
|
||
<input type="text" class="form-control" id="name" name="name">
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="comment">Nachricht:</label>
|
||
<textarea class="form-control" rows="5" id="comment" name="nachricht"></textarea>
|
||
</div>
|
||
<button type="submit" class="btn btn-default">Senden</button>
|
||
</form>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<h5>by michu-it</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<font face="Verdana, Arial, Helvetica, sans-serif" size="+3">403 Forbidden!</font><br />
|
||
|
||
<p>
|
||
An access to a restricted area has been detected and blackgate.org has been shut down to prevent damage<br /><br />
|
||
|
||
This happens because YOU tried to access a protected area on this server. Please leave AND USE OUR SITE AS INTENDED! Thanks
|
||
</p>
|
||
|
||
<p>
|
||
Every other action YOU do here is now silently logged, for the next 48h and can legally used against you!
|
||
|
||
|
||
</p>
|
||
|
||
<p>
|
||
Technical information:<br /><br />
|
||
|
||
*** STOP: 0x00000050 (0xFD3094C2, 0x00000001, 0xFBFE7617, 0x00000000)<br /><br />
|
||
*** root/ - 403, DateStamp 4e6b8559</p>
|
||
|
||
<p>
|
||
<textarea id="server" rows="8" cols="92" style="overflow: auto; border: 0; background: #5d1010; color: #fff; font-size: smaller;" wrap="soft"></textarea>
|
||
|
||
</p>
|
||
|
||
|
||
<div class="menu">
|
||
<a href="#">Home</a> | <a href="#" id="helpBtn">Contact</a>
|
||
</div>
|
||
|
||
</body>
|
||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" type="text/javascript"></script>
|
||
<!-- Latest compiled and minified JavaScript -->
|
||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||
<script>
|
||
// Get the modal
|
||
var modal = document.getElementById('helpModal');
|
||
|
||
// Get the button that opens the modal
|
||
var btn = document.getElementById("helpBtn");
|
||
|
||
// Get the <span> element that closes the modal
|
||
var span = document.getElementsByClassName("close")[0];
|
||
|
||
// When the user clicks the button, open the modal
|
||
btn.onclick = function() {
|
||
modal.style.display = "block";
|
||
}
|
||
|
||
// When the user clicks on <span> (x), close the modal
|
||
span.onclick = function() {
|
||
modal.style.display = "none";
|
||
}
|
||
|
||
// When the user clicks anywhere outside of the modal, close it
|
||
window.onclick = function(event) {
|
||
if (event.target == modal) {
|
||
modal.style.display = "none";
|
||
}
|
||
}
|
||
</script>
|
||
</html>
|
||
|