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>
121 lines
4.3 KiB
JavaScript
121 lines
4.3 KiB
JavaScript
'use strict';
|
|
'require view';
|
|
'require ui';
|
|
'require media-flow/api as API';
|
|
'require media-flow/nav as NavHelper';
|
|
'require secubox-portal/header as SbHeader';
|
|
'require secubox/kiss-theme';
|
|
|
|
return L.view.extend({
|
|
// Initialize SecuBox dark theme
|
|
initTheme: function() {
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
document.body.classList.add('secubox-mode');
|
|
if (!document.getElementById('mf-theme-styles')) {
|
|
var themeStyle = document.createElement('style');
|
|
themeStyle.id = 'mf-theme-styles';
|
|
themeStyle.textContent = 'body.secubox-mode { background: #0a0a0f !important; } body.secubox-mode .main-right, body.secubox-mode #maincontent, body.secubox-mode .container { background: transparent !important; }';
|
|
document.head.appendChild(themeStyle);
|
|
}
|
|
},
|
|
|
|
load: function() {
|
|
return Promise.all([
|
|
API.getStatsByClient()
|
|
]);
|
|
},
|
|
|
|
render: function(data) {
|
|
this.initTheme();
|
|
|
|
var statsByClient = data[0] || {};
|
|
var clients = statsByClient.clients || {};
|
|
|
|
var css = `
|
|
.mf-page { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #e4e4e7; }
|
|
.mf-header { margin-bottom: 24px; }
|
|
.mf-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
|
|
.mf-subtitle { color: #a1a1aa; font-size: 0.875rem; }
|
|
.mf-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; }
|
|
.mf-table { width: 100%; border-collapse: collapse; }
|
|
.mf-table th { text-align: left; padding: 12px 16px; font-size: 0.75rem; text-transform: uppercase; color: #71717a; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255,255,255,0.02); font-weight: 600; }
|
|
.mf-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
|
|
.mf-table tr:hover td { background: rgba(255, 255, 255, 0.03); }
|
|
.mf-empty { text-align: center; padding: 48px 20px; color: #71717a; }
|
|
.mf-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }
|
|
@media (max-width: 768px) {
|
|
.mf-card { overflow-x: auto; }
|
|
.mf-table { font-size: 0.9rem; }
|
|
.mf-table th, .mf-table td { padding: 10px 8px; }
|
|
}
|
|
@media (max-width: 480px) {
|
|
.mf-title { font-size: 1.25rem; }
|
|
.mf-table { font-size: 0.8rem; }
|
|
.mf-table th, .mf-table td { padding: 8px 4px; }
|
|
}
|
|
`;
|
|
|
|
var container = E('div', { 'class': 'mf-page' }, [
|
|
E('style', {}, css),
|
|
E('link', { 'rel': 'stylesheet', 'href': L.resource('media-flow/common.css') }),
|
|
NavHelper.renderTabs('clients'),
|
|
E('div', { 'class': 'mf-header' }, [
|
|
E('div', { 'class': 'mf-title' }, ['👥 ', _('Clients Statistics')]),
|
|
E('div', { 'class': 'mf-subtitle' }, _('Streaming activity per client'))
|
|
])
|
|
]);
|
|
|
|
var clientsList = Object.keys(clients);
|
|
|
|
if (clientsList.length === 0) {
|
|
container.appendChild(E('div', { 'class': 'mf-card' }, [
|
|
E('div', { 'class': 'mf-empty' }, [
|
|
E('div', { 'class': 'mf-empty-icon' }, '👥'),
|
|
E('div', {}, _('No client data available yet'))
|
|
])
|
|
]));
|
|
} else {
|
|
clientsList.sort(function(a, b) {
|
|
return (clients[b].total_duration_seconds || 0) - (clients[a].total_duration_seconds || 0);
|
|
});
|
|
|
|
var table = E('table', { 'class': 'mf-table' }, [
|
|
E('thead', {}, [
|
|
E('tr', {}, [
|
|
E('th', {}, _('Client IP')),
|
|
E('th', {}, _('Sessions')),
|
|
E('th', {}, _('Total Duration')),
|
|
E('th', {}, _('Total Bandwidth')),
|
|
E('th', {}, _('Top Service'))
|
|
])
|
|
]),
|
|
E('tbody', {}, clientsList.map(function(client) {
|
|
var stats = clients[client];
|
|
var duration = stats.total_duration_seconds || 0;
|
|
var hours = Math.floor(duration / 3600);
|
|
var minutes = Math.floor((duration % 3600) / 60);
|
|
|
|
return E('tr', {}, [
|
|
E('td', {}, E('strong', {}, client)),
|
|
E('td', {}, String(stats.sessions)),
|
|
E('td', {}, hours + 'h ' + minutes + 'm'),
|
|
E('td', {}, Math.round(stats.total_bandwidth_kbps) + ' kbps'),
|
|
E('td', {}, stats.top_service || 'N/A')
|
|
]);
|
|
}))
|
|
]);
|
|
|
|
container.appendChild(E('div', { 'class': 'mf-card' }, table));
|
|
}
|
|
|
|
var wrapper = E('div', { 'class': 'secubox-page-wrapper' });
|
|
wrapper.appendChild(SbHeader.render());
|
|
wrapper.appendChild(container);
|
|
return KissTheme.wrap([wrapper], 'admin/services/media-flow/clients');
|
|
},
|
|
|
|
handleSaveApply: null,
|
|
handleSave: null,
|
|
handleReset: null
|
|
});
|