一键导入
forensics
Investigate lsm audit logs with query patterns for suspicious local secret access
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Investigate lsm audit logs with query patterns for suspicious local secret access
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use dfm to initialize dotfile backups, track files safely, sync private repositories, and review AI-suggested dotfile improvements
Work on llbbl/esm, a PHP enum-state-machine library, with its local quality gates and API constraints
Integrate llbbl/enum-state-machine into a PHP project with enum states, attribute transitions, guards, hooks, and validation
Use grepwrite gw to find matches, preview code rewrites, apply transactional edits with snapshots, and undo safely
Integrate logan-logger into TypeScript apps with correct runtime imports, environment config, safe metadata, and validation
Use pkglock to switch package-lock.json between local npm registries and the public registry, and install safeguards against committing local URLs
| name | forensics |
| version | 0.1.0 |
| description | Investigate lsm audit logs with query patterns for suspicious local secret access |
| allowed-tools | Bash, Read, Grep, Glob |
Use this skill when the user asks for forensic analysis of lsm audit logs, such as:
The lsm binary must be installed and available on PATH.
Before running any lsm command, verify it is available:
command -v lsm >/dev/null 2>&1 || {
echo "lsm not found on PATH - install it with: brew install llbbl/tap/lsm" >&2
exit 1
}
--format json for analysis and summarize findings in plain language.~/.lsm/key.txt or encrypted *.age files.lsm audit query uses the configured local audit log.lsm audit query --format json commands.Inspect supported filters:
lsm audit query --help
Query recent events as JSON:
lsm audit query --since 24h --format json
Filter by app or environment:
lsm audit query --app myapp --env production --since 24h --format json
Find non-interactive access:
lsm audit query --tty absent --since 24h --format json
See examples.md for canned investigation patterns.