Add detection patterns for latest actively exploited vulnerabilities: - CVE-2025-55182 (React2Shell, CVSS 10.0) - CVE-2025-8110 (Gogs RCE), CVE-2025-53770 (SharePoint) - CVE-2025-52691 (SmarterMail), CVE-2025-40551 (SolarWinds) - CVE-2024-47575 (FortiManager), CVE-2024-21887 (Ivanti) - CVE-2024-3400, CVE-2024-0012, CVE-2024-9474 (PAN-OS) New attack categories based on OWASP Top 10 2025: - HTTP Request Smuggling (TE.CL/CL.TE conflicts) - AI/LLM Prompt Injection (ChatML, instruction markers) - WAF Bypass techniques (Unicode normalization, double encoding) - Supply Chain attacks (CI/CD poisoning, dependency confusion) - Extended SSTI (Jinja2, Freemarker, Velocity, Thymeleaf) - API Abuse (BOLA/IDOR, mass assignment) CrowdSec scenarios split into 11 separate files for reliability. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
2.3 KiB
JavaScript
47 lines
2.3 KiB
JavaScript
'use strict';
|
|
'require view';
|
|
'require secubox-theme/theme as Theme';
|
|
'require bandwidth-manager/api as API';
|
|
'require secubox/kiss-theme';
|
|
|
|
return view.extend({
|
|
load: function() { return API.getUsageRealtime(); },
|
|
render: function(data) {
|
|
var clients = data.clients || [];
|
|
var view = E('div', {class:'cbi-map'}, [
|
|
E('link', { 'rel': 'stylesheet', 'href': L.resource('secubox-theme/secubox-theme.css') }),
|
|
E('h2', {}, 'Connected Clients'),
|
|
E('div', {style:'background:#1e293b;padding:20px;border-radius:12px;margin-top:20px'}, [
|
|
clients.length ? E('table', {style:'width:100%;color:#f1f5f9'}, [
|
|
E('tr', {style:'border-bottom:1px solid #334155'}, [
|
|
E('th', {style:'padding:12px;text-align:left'}, 'Hostname'),
|
|
E('th', {style:'padding:12px'}, 'IP Address'),
|
|
E('th', {style:'padding:12px'}, 'MAC'),
|
|
E('th', {style:'padding:12px'}, 'Download'),
|
|
E('th', {style:'padding:12px'}, 'Upload')
|
|
])
|
|
].concat(clients.map(L.bind(function(c) {
|
|
return E('tr', {}, [
|
|
E('td', {style:'padding:12px;font-weight:600'}, c.hostname),
|
|
E('td', {style:'padding:12px;text-align:center;font-family:monospace'}, c.ip),
|
|
E('td', {style:'padding:12px;text-align:center;font-family:monospace;font-size:12px'}, c.mac),
|
|
E('td', {style:'padding:12px;text-align:center;color:#22c55e'}, this.formatBytes(c.rx_bytes)),
|
|
E('td', {style:'padding:12px;text-align:center;color:#3b82f6'}, this.formatBytes(c.tx_bytes))
|
|
]);
|
|
}, this)))) : E('p', {style:'color:#64748b;text-align:center'}, 'No clients connected')
|
|
])
|
|
]);
|
|
return KissTheme.wrap([view], 'admin/services/bandwidth-manager/clients');
|
|
},
|
|
|
|
formatBytes: function(bytes) {
|
|
if (bytes === 0) return '0 B';
|
|
var k = 1024;
|
|
var sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
|
|
var i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
|
|
},
|
|
|
|
handleSaveApply:null,handleSave:null,handleReset:null
|
|
});
|