Files
CDN-APP-INSIDER/views/acces-denied.ejs
Dinawo 44631acfc6
All checks were successful
continuous-integration/drone/push Build is passing
Urgent correction of version v1.0.0-beta.14 due to crash issues when acting on the CDN.
2024-07-12 18:13:03 +02:00

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>