跳到主要内容
知仓学习社ZHICANG

security-generate-security-sample-data

>

读凭据执行命令联网严重 4 · 高危 34elastic/agent-skills

它会碰到什么

扫了多少6 个文本文件,114 KB
它会碰到什么读凭据执行命令联网
命中总数45 处
命中统计严重 4 · 高 34 · 中 2 · 低 5
逐条看命中(30 条严重或高危)
  • 严重 scripts/demo-walkthrough.js:49cred-paths
    console.error("  export ELASTICSEARCH_URL='https://your-project.es.region.aws.elastic.cloud'");
  • 严重 scripts/demo-walkthrough.js:50cred-paths
    console.error("  export KIBANA_URL='https://your-project.kb.region.aws.elastic.cloud'");
  • 严重 SKILL.md:41cred-paths
    export ELASTICSEARCH_URL="https://your-project.es.region.aws.elastic.cloud"
  • 严重 SKILL.md:44cred-paths
    export KIBANA_URL="https://your-project.kb.region.aws.elastic.cloud"
  • scripts/demo-walkthrough.js:11exec-spawn
    import { exec } from "node:child_process";
  • scripts/demo-walkthrough.js:31cred-envread
    const kibanaUrl = process.env.KIBANA_URL;
  • scripts/demo-walkthrough.js:42cred-envread
    const hasES = process.env.ELASTICSEARCH_URL || process.env.ELASTICSEARCH_CLOUD_ID;
  • scripts/demo-walkthrough.js:42cred-envread
    const hasES = process.env.ELASTICSEARCH_URL || process.env.ELASTICSEARCH_CLOUD_ID;
  • scripts/demo-walkthrough.js:43cred-envread
    const hasKibana = process.env.KIBANA_URL;
  • scripts/demo-walkthrough.js:45cred-envread
    process.env.ELASTICSEARCH_API_KEY || (process.env.ELASTICSEARCH_USERNAME && process.env.ELASTICSEARCH_PASSWORD);
  • scripts/demo-walkthrough.js:45cred-envread
    process.env.ELASTICSEARCH_API_KEY || (process.env.ELASTICSEARCH_USERNAME && process.env.ELASTICSEARCH_PASSWORD);
  • scripts/demo-walkthrough.js:45cred-envread
    process.env.ELASTICSEARCH_API_KEY || (process.env.ELASTICSEARCH_USERNAME && process.env.ELASTICSEARCH_PASSWORD);
  • scripts/demo-walkthrough.js:82cred-envread
    if (process.env.KIBANA_URL) {
  • scripts/demo-walkthrough.js:96cred-envread
    if (process.env.KIBANA_URL) {
  • scripts/demo-walkthrough.js:97cred-envread
    openBrowser(`${process.env.KIBANA_URL}/app/security/alerts`);
  • scripts/es-client.js:16cred-envread
    const cloudId = process.env.ELASTICSEARCH_CLOUD_ID;
  • scripts/es-client.js:17cred-envread
    const apiKey = process.env.ELASTICSEARCH_API_KEY;
  • scripts/es-client.js:18cred-envread
    const url = process.env.ELASTICSEARCH_URL;
  • scripts/es-client.js:19cred-envread
    const username = process.env.ELASTICSEARCH_USERNAME;
  • scripts/es-client.js:20cred-envread
    const password = process.env.ELASTICSEARCH_PASSWORD;
  • scripts/es-client.js:21cred-envread
    const insecure = process.env.ELASTICSEARCH_INSECURE === "true";
  • scripts/kibana-client.js:13cred-envread
    const url = process.env.KIBANA_URL;
  • scripts/kibana-client.js:14cred-envread
    const apiKey = process.env.KIBANA_API_KEY;
  • scripts/kibana-client.js:15cred-envread
    const username = process.env.KIBANA_USERNAME || process.env.ELASTICSEARCH_USERNAME;
  • scripts/kibana-client.js:15cred-envread
    const username = process.env.KIBANA_USERNAME || process.env.ELASTICSEARCH_USERNAME;
  • scripts/kibana-client.js:16cred-envread
    const password = process.env.KIBANA_PASSWORD || process.env.ELASTICSEARCH_PASSWORD;
  • scripts/kibana-client.js:16cred-envread
    const password = process.env.KIBANA_PASSWORD || process.env.ELASTICSEARCH_PASSWORD;
  • scripts/kibana-client.js:17cred-envread
    const spaceId = process.env.KIBANA_SPACE_ID;
  • scripts/kibana-client.js:18cred-envread
    const insecure = process.env.KIBANA_INSECURE === "true";
  • scripts/kibana-client.js:26cred-envread
    if (!apiKey && !username && !password && process.env.KIBANA_NO_AUTH !== "true") {

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Generate Security Sample Data

Generate ECS-compliant security events, multi-step attack scenarios, and synthetic alert documents that populate Elastic

Security dashboards, the Alerts tab, and Attack Discovery.

Quick start

For a zero-friction experience that generates everything and opens Kibana:

node skills/security/generate-security-sample-data/scripts/demo-walkthrough.js

Workflow

- [ ] Step 1: Set environment variables
- [ ] Step 2: Generate sample data
- [ ] Step 3: Explore in Kibana
- [ ] Step 4: Clean up when done

Step 1: Set environment variables

export ELASTICSEARCH_URL="https://your-project.es.region.aws.elastic.cloud"
export ELASTICSEARCH_USERNAME="admin"
export ELASTICSEARCH_PASSWORD="your-password"
export KIBANA_URL="https://your-project.kb.region.aws.elastic.cloud"

Step 2: Generate sample data

Generate everything at once

node skills/security/generate-security-sample-data/scripts/sample-data.js \
  system endpoint okta aws windows --scenarios --alerts

Generate only events

node skills/security/generate-security-sample-data/scripts/sample-data.js \
  system endpoint --count 100

Generate only attack scenarios

node skills/security/generate-security-sample-data/scripts/sample-data.js --scenarios

Generate only synthetic alerts

node skills/security/generate-security-sample-data/scripts/sample-data.js --alerts

Step 3: Explore in Kibana

After generating data, direct the user to these pages:

  • Security > Alerts — synthetic alerts with MITRE ATT&CK mappings
  • Security > Attack Discovery — requires an LLM connector to analyze alerts
  • Security > Hosts — host activity from sample events
  • Security > Overview — summary of all security data
  • Discover — raw events across all data streams

Step 4: Clean up when done

node skills/security/generate-security-sample-data/scripts/sample-data.js --cleanup

What gets generated

Sample data spans 5 packages (system, endpoint, windows, aws, okta) and 4 focused attack scenarios covering the most

common demo themes: Windows credential theft, AWS cloud privilege escalation, Okta identity takeover, and a full

ransomware kill chain. Synthetic alert documents are indexed into .alerts-security.alerts-default with MITRE ATT&CK

mappings, severity levels, and risk scores.

All events use RFC 5737 / RFC 2606 safe addresses. For full tables of packages, scenarios, and alerts see

[references/sample-data-reference.md](references/sample-data-reference.md).

Continuous mode

Stream events to simulate a live environment:

node skills/security/generate-security-sample-data/scripts/sample-data.js \
  --continuous --interval 15

Every 5th batch includes an attack scenario; every 10th batch adds synthetic alerts. Press Ctrl+C to stop.

Tool reference

sample-data.js

| Flag | Description |

| ----------------- | ------------------------------------------------ |

| --count, -n | Events per package (default: 50) |

| --scenarios | Run all attack simulation scenarios |

| --scenario NAME | Run a specific scenario |

| --alerts | Generate synthetic alert documents |

| --cleanup | Remove all sample data and alerts |

| --continuous | Stream live events (Ctrl+C to stop) |

| --interval N | Seconds between continuous batches (default: 30) |

| --json, -j | Output results as JSON |

| --yes, -y | Skip confirmation prompts |

demo-walkthrough.js

Zero-friction runner that generates everything and opens Kibana.

| Flag | Description |

| -------------- | ------------------------------------- |

| --cleanup | Remove all sample data, alerts, case |

| --continuous | Generate then stream live events |

| --count N | Events per package (default: 50) |

| --interval N | Seconds between batches (default: 30) |

Examples

Quick demo for a stakeholder

> "Set up a demo environment so I can show Attack Discovery to my VP."

node skills/security/generate-security-sample-data/scripts/demo-walkthrough.js

Targeted scenario testing

> "Generate only the ransomware attack chain to test our detection rules."

node skills/security/generate-security-sample-data/scripts/sample-data.js \
  --scenario ransomwareChain --alerts

Simulating a live SOC

> "Keep generating events so the dashboards stay active during the demo."

node skills/security/generate-security-sample-data/scripts/demo-walkthrough.js --continuous

Cleaning up after a demo

> "Remove all sample data from my project."

node skills/security/generate-security-sample-data/scripts/sample-data.js --cleanup

Guidelines

  • All generated documents are tagged with tags: ["elastic-security-sample-data"] for safe cleanup. The cleanup command

only deletes documents with this marker.

  • If marker fields are not indexed in a data stream, cleanup falls back to scanning _source.tags for matching sample

documents from the last 14 days.

  • Synthetic alerts are indexed directly into .alerts-security.alerts-default — they do not require detection rules to

be installed or enabled.

  • Attack Discovery requires an LLM connector (OpenAI, Anthropic, Google Gemini, or similar) configured in Kibana under

Stack Management > Connectors. The "Complete" project tier unlocks the feature, but the connector must be set up

separately.

  • Use the case-management skill for creating investigation cases from alerts.

Production use

  • Do not run against production clusters unless you intend to inject synthetic data alongside real alerts. Sample

events and alerts are tagged for cleanup but will appear in dashboards, the Alerts tab, and Attack Discovery alongside

real data.

  • All write operations (generate, --cleanup, --continuous) prompt for confirmation. Pass --yes or -y to skip

when called by an agent.

  • --cleanup runs deleteByQuery across all sample data indices — verify environment variables point to the intended

cluster before running.

  • --continuous mode indexes events indefinitely until manually stopped with Ctrl+C.

Environment variables

| Variable | Required | Description |

| ------------------------ | -------- | ------------------------------------------ |

| ELASTICSEARCH_URL | Yes | Elasticsearch URL |

| ELASTICSEARCH_API_KEY | Yes\* | Elasticsearch API key |

| ELASTICSEARCH_USERNAME | Yes\* | Elasticsearch username (alternative) |

| ELASTICSEARCH_PASSWORD | Yes\* | Elasticsearch password (alternative) |

| KIBANA_URL | No | Kibana URL (for case creation and links) |

| KIBANA_USERNAME | No | Kibana username (if using Kibana features) |

| KIBANA_PASSWORD | No | Kibana password (if using Kibana features) |

\*Either API key or username/password is required for Elasticsearch.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

同名技能的其他版本

有 2 个不同仓库或目录里都有叫 security-generate-security-sample-data 的技能。它们内容并不相同,别混用: