-
Notifications
You must be signed in to change notification settings - Fork 0
/
ids.php
40 lines (39 loc) · 911 Bytes
/
ids.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error - access denied</title>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: Verdana, Arial, sans-serif;
background-color: #000;
color: #f00;
}
#wrapper {
width: 500px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="wrapper">
<h1>Access denied!</h1>
<p>
Your request has been blocked for security reasons. Please
try again in a few minutes. Should the problem persist,
please email me (see the contact page for details) with the
following unique ID, which will help to identify your
request:<br>
<code>
<?php
echo htmlspecialchars($_SERVER["REDIRECT_UNIQUE_ID"], ENT_QUOTES, 'UTF-8');
?>
</code>
</p>
</div>
<!-- wrapper -->
</body>
</html>