Skip to content

Instantly share code, notes, and snippets.

@wirwolf
Created January 27, 2026 08:01
Show Gist options
  • Select an option

  • Save wirwolf/638da8747719c6432325bda25934d173 to your computer and use it in GitHub Desktop.

Select an option

Save wirwolf/638da8747719c6432325bda25934d173 to your computer and use it in GitHub Desktop.
WAF
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Access Denied</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body class="bg-light d-flex align-items-center justify-content-center vh-100">
<div class="card border-danger text-center" style="max-width: 600px;">
<div class="card-body">
<h1 class="text-danger">Access Denied</h1>
<p class="text-muted">You have been banned for too many attempts or suspicious activity.</p>
</div>
<div class="card-footer text-muted small">
© WAFStream
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment