Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计异常

webassessmentwebassessment 搜索

Agent Skill

webassessment 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,909

周安装

82

GitHub Stars

11,882

下载量

669
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:webassessment(webassessment 搜索)
来源仓库:https://github.com/danielmiessler/personal_ai_infrastructure
仓库路径:skills/webassessment
安装命令:
npx skills add https://github.com/danielmiessler/personal_ai_infrastructure --skill WebAssessment
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/danielmiessler/personal_ai_infrastructure --skill WebAssessment

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务背景快速定位目标内容。

  • 适用于需要从多来源提取线索并进行分类整理的场景。
  • 通过 npx skills add 从指定仓库安装,兼容主流 AI 宿主环境。
  • 建议核实仓库维护状态,避免触发不必要的网络或文件操作。
  • webassessment 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Customization

Before executing, check for user customizations at: ~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/WebAssessment/

If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.

🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)

You MUST send this notification BEFORE doing anything else when this skill is invoked.

  1. Send voice notification: curl -s -X POST http://localhost:8888/notify \ -H "Content-Type: application/json" \ -d '{"message": "Running the WORKFLOWNAME workflow in the WebAssessment skill to ACTION"}' \ > /dev/null 2>&1 &
  2. Output text notification: Running the **WorkflowName** workflow in the **WebAssessment** skill to ACTION...

This is not optional. Execute this curl command immediately upon skill invocation.

WebAssessment Skill

Security assessment infrastructure integrating reconnaissance, threat modeling, and vulnerability testing.

Workflow Routing

TriggerWorkflow
"understand application", "what does this app do", "map the application"UnderstandApplication
"threat model", "attack scenarios", "how would I attack"CreateThreatModel
"pentest", "security assessment", "test for vulnerabilities"Pentest/MasterMethodology
"fuzz with ffuf", "directory fuzzing", "content discovery"ffuf/FfufGuide
"OSINT", "reconnaissance", "open source intelligence"osint/MasterGuide
"test web app", "Playwright", "browser automation"webapp/TestingGuide
"bug bounty", "bounty programs"bug-bounty/Programs
"vulnerability analysis with AI", "Gemini analysis"VulnerabilityAnalysisGemini3

Skill Integration

WebAssessment coordinates with specialized skills:

PhaseSkillPurpose
Scope DefinitionReconCorporate structure, domain enumeration
Target DiscoveryReconSubdomains, endpoints, ports
UnderstandingWebAssessmentApp narrative, user flows, sensitive data
Threat ModelingWebAssessmentAttack scenarios, test prioritization
Injection TestingPromptInjectionLLM-specific attacks
IntelligenceOSINTPeople, companies, social media

Assessment Workflow

1. Corporate Structure (Recon) → Define scope and targets
2. Subdomain Enumeration (Recon) → Find all domains
3. Endpoint Discovery (Recon) → Extract JS endpoints
4. Understand Application → Build app narrative
5. Create Threat Model → Prioritize attack scenarios
6. Execute Testing → Test against identified threats
7. Report Findings → Document with PoCs

Recon Skill Tools

WebAssessment uses tools from the Recon skill:

# Corporate structure for scope
bun ~/.claude/skills/Security/Recon/Tools/CorporateStructure.ts target.com

# Subdomain enumeration
bun ~/.claude/skills/Security/Recon/Tools/SubdomainEnum.ts target.com

# Endpoint discovery from JavaScript
bun ~/.claude/skills/Security/Recon/Tools/EndpointDiscovery.ts https://target.com

# Port scanning
bun ~/.claude/skills/Security/Recon/Tools/PortScan.ts target.com

# Path discovery
bun ~/.claude/skills/Security/Recon/Tools/PathDiscovery.ts https://target.com

UnderstandApplication Output

Produces structured narrative including:

  • Summary: Purpose, industry, user base, critical functions
  • User Roles: Access levels and capabilities
  • User Flows: Step-by-step processes with sensitive data
  • Technology Stack: Frontend, backend, auth, third-party
  • Attack Surface: Entry points, inputs, file uploads, websockets

CreateThreatModel Output

Generates prioritized attack plan:

  • Threats: OWASP/CWE mapped with risk scores
  • Attack Paths: Multi-step attack scenarios
  • Test Plan: Prioritized with tool suggestions
  • Effort Estimates: Quick/medium/extensive per threat

Threat Categories

CategoryTriggers On
AuthenticationAuth mechanisms detected
Access ControlMultiple user roles
InjectionAll web apps
Data ExposureSensitive data identified
File UploadUpload functionality
API SecurityAPI endpoints
WebSocketWebSocket detected
Business LogicAll web apps
Payment SecurityPayment flows

6-Phase Pentest Methodology

Phase 0: Scoping & Preparation Phase 1: Reconnaissance (Recon skill) Phase 2: Mapping (content discovery) Phase 3: Vulnerability Analysis Phase 4: Exploitation Phase 5: Reporting

Key Principles

  1. Authorization first - Never test without explicit permission
  2. Understand before testing - Build app narrative first
  3. Threat model guides testing - Don't test blindly
  4. Breadth then depth - Wide recon, focused exploitation
  5. Document everything - Notes, screenshots, commands

Workflow Index

Core Assessment:

  • Workflows/UnderstandApplication.md - Application reconnaissance
  • Workflows/CreateThreatModel.md - Attack scenario generation

Penetration Testing:

  • Workflows/pentest/MasterMethodology.md - 6-phase methodology
  • Workflows/pentest/ToolInventory.md - Security tools reference
  • Workflows/pentest/Reconnaissance.md - Asset discovery
  • Workflows/pentest/Exploitation.md - Vulnerability testing

Web Fuzzing:

  • Workflows/ffuf/FfufGuide.md - FFUF fuzzing guide
  • Workflows/ffuf/FfufHelper.md - Automated fuzzing helper

Bug Bounty:

  • Workflows/bug-bounty/Programs.md - Program tracking
  • Workflows/bug-bounty/AutomationTool.md - Bounty automation

Web App Testing:

  • Workflows/webapp/TestingGuide.md - Playwright testing
  • Workflows/webapp/Examples.md - Testing patterns

OSINT:

  • Workflows/osint/MasterGuide.md - OSINT methodology
  • Workflows/osint/Reconnaissance.md - Domain recon
  • Workflows/osint/SocialMediaIntel.md - SOCMINT
  • Workflows/osint/Automation.md - SpiderFoot/Maltego
  • Workflows/osint/MetadataAnalysis.md - ExifTool analysis

AI-Powered:

  • Workflows/VulnerabilityAnalysisGemini3.md - Gemini deep analysis

Examples

Example 1: Full assessment workflow

User: "Security assessment on app.example.com"
→ Run UnderstandApplication to build narrative
→ Run CreateThreatModel to prioritize testing
→ Follow MasterMethodology with threat model guidance
→ Report findings with OWASP/CWE references

Example 2: Quick threat model

User: "How would I attack this app?"
→ Run CreateThreatModel on target
→ Get prioritized attack paths
→ Get test plan with tool suggestions

Example 3: Integrate with Recon

User: "Assessment on target.com including all subdomains"
→ CorporateStructure (Recon) → Find parent/child companies
→ SubdomainEnum (Recon) → Find all subdomains
→ EndpointDiscovery (Recon) → Extract JS endpoints
→ UnderstandApplication → Build app narrative
→ CreateThreatModel → Generate attack plan

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.17%
按下载量换算209

OpenCode

21.05%
按下载量换算141

Gemini CLI

17.77%
按下载量换算119

Codex

13.04%
按下载量换算87

Cursor

7.17%
按下载量换算48

github-copilot

3.11%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills