
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@aegis-sdk/dashboard
Advanced tools
Audit log visualization dashboard for Aegis prompt injection defense
Standalone audit log visualization dashboard for Aegis. Zero dependencies -- serves a self-contained HTML app over a local HTTP server that reads JSONL audit log files produced by @aegis-sdk/core.
Part of the Aegis.js prompt injection defense toolkit.
npm install -g @aegis-sdk/dashboard
Or run without installing:
npx @aegis-sdk/dashboard
Requires Node.js >= 18.
Point the dashboard at an Aegis audit log file:
aegis-dashboard --file ./aegis-audit.jsonl
Then open http://localhost:6639 in your browser.
| Flag | Description |
|---|---|
--file <path> | Default JSONL log file to load |
--port <n> | Port to listen on (default: 6639) |
--help | Show help |
aegis-dashboard --file ./aegis-audit.jsonl --port 8080
The dashboard reads JSONL files produced by the Aegis FileTransport. Enable file-based audit logging in your Aegis configuration:
import { Aegis, FileTransport } from "@aegis-sdk/core";
const aegis = new Aegis({
policy: "balanced",
audit: {
transports: ["json-file"],
path: "./aegis-audit.jsonl",
},
});
Or with explicit FileTransport configuration (rotation, max size):
import { Aegis, FileTransport, AuditLog } from "@aegis-sdk/core";
const file = new FileTransport({
path: "./aegis-audit.jsonl",
rotate: true,
maxSizeMB: 100,
});
const aegis = new Aegis({
policy: "balanced",
audit: { transports: ["json-file"] },
});
The server exposes two endpoints for programmatic access:
GET /api/logs?file=<path> -- Returns the full log file as a JSON array.GET /api/logs/stream?file=<path> -- SSE stream that tails the file for new entries in real time.If a --file flag was provided at startup, the file query parameter is optional and defaults to that path.
MIT
FAQs
Audit log visualization dashboard for Aegis prompt injection defense
The npm package @aegis-sdk/dashboard receives a total of 5 weekly downloads. As such, @aegis-sdk/dashboard popularity was classified as not popular.
We found that @aegis-sdk/dashboard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.