39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>403 ERROR</title>
|
|
<script>
|
|
function generateRequestId() {
|
|
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
let result = '';
|
|
for (let i = 0; i < 32; i++) {
|
|
result += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function generateTimestamp() {
|
|
return new Date().toISOString().replace(/[-:]/g, '').replace(/\..+/, 'Z');
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const requestId = generateRequestId();
|
|
const timestamp = generateTimestamp();
|
|
|
|
document.getElementById('request-id').innerText = requestId;
|
|
document.getElementById('timestamp').innerText = timestamp;
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>403 ERROR</h1>
|
|
<p>The request could not be satisfied.</p>
|
|
<p>Request blocked. We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.</p>
|
|
<p>Generated by Myaxrin Nexus (Security Department)</p>
|
|
<p>Request ID: <span id="request-id"></span></p>
|
|
<p>Timestamp: <span id="timestamp"></span></p>
|
|
</body>
|
|
</html>
|