- WebSocket Shell/RDP: Rollenprüfung statt nur JWT-Gültigkeit (war: jeder eingeloggte User konnte fremde Agents per Shell/RDP übernehmen) - JWT_SECRET: Server bricht ab statt mit unsicherem Default weiterzulaufen - Auth: Token läuft jetzt über httpOnly-Cookie statt localStorage (XSS-Schutz gegen Session-Diebstahl) - WS-Auth: Token nicht mehr als URL-Query-Param (landete in nginx-Logs), sondern als erste Message bzw. automatisch via Cookie - Frontend: toter Rollen-Check (isSuperAdmin/isAdmin ohne Funktionsaufruf) in AgentDetailPage gefixt - XSS: DOMPurify-Sanitizing für alle marked.parse()-Renderstellen (KI-Antworten, Kommentare, Knowledge Base) - E-Mail: HTML-Escaping für alle ticket-gesteuerten Felder (auch über öffentliche Ticket-Route erreichbar) - SSRF-Schutz beim Knowledge-Base-URL-Import (blockt private/Loopback-Adressen) - TV-Dashboard: Shared-Key statt komplett offenem Endpoint - Striktes Rate-Limit auf /login, must_change_password serverseitig erzwungen - Agent (C#) v2.7.0: RDP-Consent/Disconnect/Capture verlangen jetzt ein Pro-Session-Secret (war: jeder lokale Prozess konnte Consent vortäuschen), DataDir-ACL für agent.log/status.json - FIDO-PINs AES-256-GCM-verschlüsselt statt Klartext, Retention-Job für alte patch_commands/audit_log Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
689 B
JavaScript
27 lines
689 B
JavaScript
const WebSocket = require('ws');
|
|
const fs = require('fs');
|
|
|
|
const token = process.argv[2];
|
|
const agentId = process.argv[3];
|
|
const command = process.argv[4].startsWith('@') ? fs.readFileSync(process.argv[4].slice(1), 'utf8') : process.argv[4];
|
|
|
|
const ws = new WebSocket(`ws://localhost:5000/ws?type=shell&agentId=${agentId}`);
|
|
|
|
let buffer = '';
|
|
ws.on('open', () => {
|
|
ws.send(JSON.stringify({ type: 'auth', token }));
|
|
setTimeout(() => {
|
|
ws.send(command + '\r\n');
|
|
}, 1500);
|
|
});
|
|
|
|
ws.on('message', (data) => {
|
|
buffer += data.toString();
|
|
});
|
|
|
|
const waitMs = parseInt(process.argv[5]) || 8000;
|
|
setTimeout(() => {
|
|
console.log(buffer);
|
|
process.exit(0);
|
|
}, waitMs);
|