From f767a27859f57ea40b6f20fd5c4417a23736dddb Mon Sep 17 00:00:00 2001 From: prey87 <12467410+prey87@users.noreply.github.com> Date: Mon, 28 Jun 2021 07:07:29 +0200 Subject: [PATCH] added ip address to $f2b_options['perm_bans'] and $f2b_options['active_bans'] to fail2ban.inc (#4152) added link to bgp.he.net/ip/ in admin fail2ban overview --- data/web/admin.php | 4 ++-- data/web/inc/functions.fail2ban.inc.php | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/data/web/admin.php b/data/web/admin.php index 58d17ab3..19c78022 100644 --- a/data/web/admin.php +++ b/data/web/admin.php @@ -846,7 +846,7 @@ if (!isset($_SESSION['gal']) && $license_cache = $redis->Get('LICENSE_STATUS_CAC if (!empty($f2b_data['active_bans'])): foreach ($f2b_data['active_bans'] as $active_bans): ?> -

() - +

() - @@ -870,7 +870,7 @@ if (!isset($_SESSION['gal']) && $license_cache = $redis->Get('LICENSE_STATUS_CAC if (!empty($f2b_data['perm_bans'])): foreach ($f2b_data['perm_bans'] as $perm_bans): ?> - + hGetAll('F2B_PERM_BANS'); if (is_array($pb)) { foreach ($pb as $key => $value) { - $f2b_options['perm_bans'][] = $key; + $f2b_options['perm_bans'][] = array( + 'network'=>$key, + 'ip' => strtok($key,'/') + ); + } } else { @@ -61,6 +65,7 @@ function fail2ban($_action, $_data = null) { $f2b_options['active_bans'][] = array( 'queued_for_unban' => $queued_for_unban, 'network' => $network, + 'ip' => strtok($network,'/'), 'banned_until' => sprintf('%02dh %02dm %02ds', ($difference/3600), ($difference/60%60), $difference%60) ); }