secops-by-joes
Perform SecOps endpoint checks for EDR, Sysmon, updates, EVTX alerts, least privilege, network exposure, credential protection, vulnerabilities, weekly asses...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install secops-by-joes或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install secops-by-joes⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/secops-by-joes/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: Security Joes AI Analyst description: SecOps checks for endpoints: EDR, Sysmon, updates, EVTX on heartbeat, least privilege, network visibility, credential protection (Kerberos/NTLM/pass-the-hash), device inventory and known vulnerabilities, weekly assessment, and skill integrity (hash-on-wake, version-aware). Use when implementing or reviewing host posture, heartbeat logic, EDR/Sysmon/EVTX, privilege, network exposure, credential hardening, vuln assessment, weekly SecOps review, or skill compromise checks. version: 1.0.0 author: Security Joes authorUrl: https://www.securityjoes.com homepage: https://www.securityjoes.com license: MIT metadata: openclaw: emoji: "🔒" category: "security" tags: - security - secops - clawhub - edr - sysmon - evtx ---
You guide and implement SecOps checks for endpoints. Focus: EDR, Sysmon, updates, EVTX on heartbeat, least privilege, network visibility, credential protection (Kerberos/NTLM/pass-the-hash), device inventory and known vulnerabilities, and weekly assessment. Targets Windows; use PowerShell/WMI/registry and EVTX where appropriate.
---
Microsoft Defender
WinDefend (Get-Service WinDefend).
Get-MpComputerStatus (or MpCmdRun.exe -GetStatus) for signature version and real-time protection state.
HKLM\SOFTWARE\Microsoft\Windows Defender and related product state keys.
CrowdStrike Falcon
CsAgent (Get-Service CsAgent -ErrorAction SilentlyContinue).
HKLM\SYSTEM\CurrentControlSet\Services\CsAgent or Falcon-specific keys under HKLM\SOFTWARE\CrowdStrike.
Others (SentinelOne, Carbon Black, etc.)
Output
edr_present: true|false, edr_name: "Defender"|"CrowdStrike"|..., optional edr_healthy: true|false (e.g. service running, real-time on).
---
Sysmon64 or Sysmon (Get-Service Sysmon64, Sysmon -ErrorAction SilentlyContinue).
Microsoft-Windows-Sysmon%4Operational under C:\Windows\System32\winevt\Logs\ (path: ...\Microsoft-Windows-Sysmon%4Operational.evtx).
Sysmon64 -s or known config path) to confirm logging scope.
Output
sysmon_installed: true|false, sysmon_log_path: "..." (if available), optional sysmon_service_running: true|false.
---
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 1 for last patch date; or (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentBuild (and optionally UB R) for build.
Win32_QuickFixEngineering or COM Microsoft.Update.Session to see last install time / pending reboots.
up_to_date: true|false and optional last_patch_date or build.
---
On heartbeat (or on a scheduled check that aligns with heartbeats):
- Security: C:\Windows\System32\winevt\Logs\Security.evtx
- Sysmon: Microsoft-Windows-Sysmon%4Operational.evtx
- Microsoft-Windows-Windows Defender/Operational (Defender alerts)
- Optional: Application, System for context.
- Security: logon failures (e.g. 4625), sensitive privilege use (4672, 4688), account lockout, etc. - Sysmon: creation of executables in temp, suspicious parent/child, etc. (event IDs depend on config). - Defender: detection events (e.g. 1116, 1117), threats (1006, 1015). - Prefer time-bounded queries (e.g. last N minutes since previous heartbeat or last 24h) to avoid overload.
- PowerShell: Get-WinEvent -FilterHashtable @{ LogName='Security'; StartTime=$since } (and similar for Sysmon/Defender).
- Or use a small script/tool that reads EVTX and outputs a compact JSON (event IDs, time, count) for the collector to emit as details or as an alert.
- Attach to heartbeat details (e.g. evtx_alert_count, evtx_summary[]) or raise an alert event when thresholds are exceeded (e.g. > N failures, or any Defender detection).
---
Check whether the device/user runs with least privilege (not over-privileged).
whoami /groups to see group membership; token elevation type via (Get-Process -Id $PID).StartInfo.Verb or WMI/CIM. For elevation: check if process token has elevation (e.g. [System.Security.Principal.WindowsIdentity]::GetCurrent().Groups and look for S-1-16-12288 = High Mandatory Level).
net localgroup Administrators (or Get-LocalGroupMember -Group Administrators) – report if the current user or common service accounts are in Administrators.
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA = 1 (UAC on). Optional: ConsentPromptBehaviorAdmin, PromptOnSecureDesktop.
Output
least_privilege: true|false, current_user_elevated: true|false, in_local_admins: true|false, optional uac_enabled: true|false.
---
Assess what networks and neighbors the device can see (exposure and lateral movement surface).
Get-NetAdapter, Get-NetIPAddress – list adapters, IPs, gateways. Optional: Get-NetRoute.
Get-NetNeighbor or arp -a – what other hosts the device has recently talked to (L2/L3 neighbors)....
安装 A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. 后,可以对 AI 说这些话来触发它
Help me get started with A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks.
Explains what A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. does, walks through the setup, and runs a quick demo based on your current project
Use A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. to perform SecOps endpoint checks for EDR, Sysmon, updates, EVTX alert...
Invokes A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. with the right parameters and returns the result directly in the conversation
将技能文件夹放到 ~/.claude/skills/secops-by-joes/ 目录(个人级,所有项目可用),或 .claude/skills/secops-by-joes/(项目级)。重启 AI 客户端后,用 /secops-by-joes 主动调用,或让 AI 根据上下文自动发现并使用。
A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. 可免费安装使用。请查阅仓库了解许可证信息。
What can I do with A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. in my developer & devops workflow?
Lists the top use cases for A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks., with example commands for each scenario
Automate my developer & devops tasks using A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks.
Identifies repetitive steps in your workflow and sets up A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. to handle them automatically
Perform SecOps endpoint checks for EDR, Sysmon, updates, EVTX alerts, least privilege, network exposure, credential protection, vulnerabilities, weekly asses...
A SecOps expert to handle security issues, ensure that protections are in place and collect evidence for security analysis. The Skill also contains skill integrity checks. 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。