Urgent correction of version v1.0.0-beta.14 due to crash issues when acting on the CDN.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,14 +1,38 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="icon" href="/public/assets/homelab_logo.png"/>
|
||||
<title>401 Authorization Required</title>
|
||||
<!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>
|
||||
<center><h1>401 Authorization Required</h1></center>
|
||||
<center id="request-id"></center>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://discord.gg/k6r96Tmtgx" target="_blank">SwiftLogic Labs</a>
|
||||
</center>
|
||||
<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>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user