mirror of
https://github.com/SubleXBle/Fail2Ban-Report.git
synced 2026-02-11 11:18:49 -06:00
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Fail2Ban Report</title>
|
|
<link rel="stylesheet" href="assets/css/style.css" />
|
|
<script>
|
|
const availableFiles = <?php echo $filesJson; ?>;
|
|
</script>
|
|
<script>
|
|
const statsFile = 'fail2ban-events-<?php echo date("Ymd"); ?>.json';
|
|
</script>
|
|
<script src="assets/js/jsonreader.js" defer></script>
|
|
<script src="assets/js/action-collector.js" defer></script>
|
|
<script src="assets/js/action.js" defer></script>
|
|
<script src="assets/js/blocklist-overlay.js" defer></script>
|
|
<script src="assets/js/fail2ban-logstats.js" defer></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="inline-headlines">
|
|
<div>
|
|
<h1>Fail2Ban-Report</h1>
|
|
<h2>Let's catch the bad guys!</h2>
|
|
</div>
|
|
|
|
<div id="fail2ban-stats">
|
|
<div>🚫 Bans: <span id="fail2ban-bans">--</span></div>
|
|
<div>🟢 Unbans: <span id="fail2ban-unbans">--</span></div>
|
|
<div>📊 Total: <span id="fail2ban-total">--</span></div>
|
|
</div>
|
|
|
|
<div id="headerversion">
|
|
<div>Version : 0.3.1</div>
|
|
</div>
|
|
</div>
|