Open service 54.192.35.45:443 · miicrolin.com
2026-01-31 16:43
HTTP/1.1 418
Content-Type: text/html; charset=UTF-8
Content-Length: 3635
Connection: close
Date: Sat, 31 Jan 2026 16:43:03 GMT
Set-Cookie: acw_tc=0a03e58d17698778263882144e40462f7d1f2b04809c4d0ff327abe70e3e06;path=/;HttpOnly;Max-Age=1800
X-Powered-By: WAF/3.0
X-Cache: Error from cloudfront
Via: 1.1 c683ff121fe088b26b026e31d2d1adce.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: FRA56-P15
X-Amz-Cf-Id: gKbp_s34Y5GasyHisjLUrSTS4ThJD8P7JM-pYsrnqKVw8TmztQJIaA==
Page title: Security Alert - Web Application Firewall
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Alert - Web Application Firewall</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #f7f8fa;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #333;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
max-width: 600px;
width: 90%;
text-align: center;
}
.alert-icon {
color: #ff4d4f;
font-size: 48px;
margin-bottom: 20px;
}
.title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
color: #1f1f1f;
}
.description {
color: #666;
margin-bottom: 30px;
line-height: 1.6;
}
.details {
background: #f8f9fa;
padding: 20px;
border-radius: 6px;
margin-bottom: 30px;
text-align: left;
}
.detail-item {
margin-bottom: 10px;
font-family: monospace;
font-size: 14px;
}
.detail-label {
color: #666;
margin-right: 10px;
}
.support {
font-size: 14px;
color: #8c8c8c;
}
@media (max-width: 480px) {
.container {
padding: 20px;
}
.title {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="alert-icon">⚠️</div>
<div class="title">Access Denied</div>
<div class="description">
Your request has been blocked by Web Application Firewall due to suspicious activity.
</div>
<div class="details">
<div class="detail-item">
<span class="detail-label">Request ID:</span>
<span id="requestId"></span>
</div>
<div class="detail-item">
<span class="detail-label">Time:</span>
<span id="timestamp"></span>
</div>
<div class="detail-item">
<span class="detail-label">Rule ID:</span>
<span id="ruleId"></span>
</div>
</div>
<div class="support">
If you believe this is a false positive, please contact your website administrator.
</div>
</div>
<script>
function generateRequestId() {
return 'waf_' + Array.from(Array(32), () => Math.floor(Math.random() * 36).toString(36)).join('');
}
function generateRuleId() {
return Math.floor(Math.random() * 9000000) + 1000000;
}
function formatTimestamp() {
return new Date().toISOString().replace('T', ' ').substr(0, 19) + ' UTC';
}
document.getElementById('requestId').textContent = generateRequestId();
document.getElementById('timestamp').textContent = formatTimestamp();
document.getElementById('ruleId').textContent = generateRuleId();
</script>
</body>
</html>