Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

attack-surface-xss攻击面 xss

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

4

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/igbuend/grimbard --skill attack-surface-xss

简介

attack-surface-xss 用于被动观测目标站点的 XSS 攻击面结构,识别潜在漏洞位置。

  • 适用于 Web 应用安全评估、防御机制验证及红队作战地图绘制场景。
  • 分析 HTTP 头配置、前端框架行为与 DOM 结构特征,判断 XSS 可行性等级。
  • 仅执行非侵入式探测,不包含实际载荷注入或漏洞利用行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

XSS Attack Surface Reconnaissance

Map the XSS attack surface of a target URL. Analyze security headers, client-side frameworks, JavaScript patterns, and DOM structure to identify what makes XSS possible, easier, or harder.

This skill does NOT inject payloads or test for XSS. It performs passive observation only (HTTP requests + source analysis). For active XSS testing, use /xss-finder.

Target: $ARGUMENTS (URL to analyze)

When to Use This Skill

  • Before running /xss-finder — understand what defenses exist
  • Scoping an XSS engagement — identify highest-value test targets
  • Evaluating a site's XSS posture without active testing
  • Mapping client-side technology stack for exploit development
  • Identifying which XSS classes (reflected, stored, DOM) are most likely

Core Capabilities

CapabilityDescription
Header AssessmentCSP, X-Content-Type-Options, cookie flags, charset
Framework DetectionReact, Angular, Vue, jQuery + version extraction
Vulnerable Library DetectionKnown CVEs per detected library version
DOM XSS Source/Sink MappinginnerHTML, eval, location.hash, postMessage
Input Vector EnumerationForms, hidden fields, URL parameter reflection
Attack Priority RankingOrdered list of where to focus XSS testing

Workflow

Phase 1: Fetch Target

Retrieve response headers and page content from $ARGUMENTS:

# Response headers (follow redirects)
curl -sI -L "$URL"

# Full page body (HTML + inline JS)
curl -sL "$URL" -o /tmp/xss-recon-body.html

Use WebFetch as fallback for JavaScript-rendered content (SPAs that return minimal HTML).

Extract script references:

  1. Parse all <script> tags — capture both inline content and external src URLs
  2. Fetch external JS files from same-origin and known CDNs (jsdelivr, cdnjs, unpkg, googleapis)
  3. Cap at 20 external files to avoid excessive fetching
  4. Store fetched JS content for Phase 4 analysis

Record metadata:

  • Final URL after redirects (HTTP → HTTPS upgrade?)
  • Response status code
  • Server header value
  • Number of redirects

Phase 2: Security Headers Assessment

Check each header and rate its XSS impact:

HeaderCheckXSS Impact
Content-Security-PolicyPresent? unsafe-inline? Wildcards? Bypass CDNs?Primary XSS defense
Content-Security-Policy-Report-OnlyNon-enforcing — intel onlyShows intended policy
X-Content-Type-Optionsnosniff present?Blocks MIME-confusion script execution
X-XSS-ProtectionDeprecated; 0 = deliberately disabledLegacy posture indicator
Referrer-PolicyData leak controlReferer-based injection intel
Permissions-PolicyFeature restrictionsLimits attack surface
Content-TypeCharset specified?Missing charset enables UTF-7/ISO-2022-JP XSS
Set-CookieHttpOnly, Secure, SameSite flagsCookie theft feasibility

CSP quick assessment (inline):

  • Missing CSP → flag as critical gap, all inline injection viable
  • unsafe-inline in script-src → inline script injection works directly
  • unsafe-eval → eval-based payloads viable
  • Wildcard * or data: in script-src → script loading from any origin
  • Known bypass CDNs allowlisted (googleapis, cdnjs, jsdelivr, unpkg) → JSONP/Angular bypasses
  • strict-dynamic present → script gadget focus, not direct injection
  • Trusted Types → DOM sink restrictions active

For deep CSP analysis, recommend running /content-security-policy $URL.

Cookie assessment:

  • Missing HttpOnlydocument.cookie exfiltration works
  • Missing Secure → network MITM can steal cookies
  • Missing SameSite → CSRF + XSS chaining viable
  • All flags present → cookie theft blocked, pivot to DOM-based exfiltration

Phase 3: Framework & Library Detection

Detect client-side stack from page source, script content, and global objects.

Frameworks — detection signatures:

FrameworkDetection Patterns
Reactdata-reactroot, _reactRootContainer, __REACT_DEVTOOLS, react.production.min.js
Angularng-app, ng-version attribute, angular.js/angular.min.js in script src
Vuedata-v- attributes, __VUE__, vue.js/vue.min.js in script src
jQueryjquery.min.js in script src, jQuery or $ assignment in inline scripts
Next.js__NEXT_DATA__ script tag, _next/static paths
Nuxt__NUXT__ global, _nuxt/ paths
Sveltesvelte in script paths, __svelte
Emberember.js in script src, data-ember- attributes
Backbonebackbone.js in script src

Security libraries — detect sanitizers:

LibraryDetectionNotes
DOMPurifydompurify in script src/content, DOMPurify.sanitize callsCheck version — mXSS bypasses per version
sanitize-htmlsanitize-html in script pathsServer-side usually, may appear in bundles
Helmet.jsInfer from header patterns (X-DNS-Prefetch-Control, X-Content-Type-Options set together)Server-side only
Trusted Typesrequire-trusted-types-for in CSP, trustedTypes API usageBrowser-enforced sink protection

Vulnerable library detection — extract versions from filenames and CDN URLs:

LibraryVulnerable VersionsXSS-Relevant Issue
jQuery < 3.5.0jquery-3.2.1.min.js, CDN path version$.htmlPrefilter XSS (CVE-2020-11022, CVE-2020-11023)
Angular < 1.6.xangular.js/1.5.8/ in CDN URLTemplate sandbox escape: {{$on.constructor('alert(1)')()}}
DOMPurify < 2.4.0dompurify/2.3.x/ in CDN URLmXSS via SVG+style namespace confusion
lodash < 4.17.21lodash/4.17.x/ in CDN URLPrototype pollution gadgets → XSS chain
Handlebars < 4.7.7handlebars/4.7.x/ in CDN URLPrototype pollution → template injection
Moment.jsAny versionReDoS, often bundled with vulnerable deps

For each detected library: report version, known XSS-relevant CVEs, and specific exploitation notes.

Phase 4: JavaScript Pattern Analysis

Analyze inline scripts and fetched JS files for dangerous patterns.

DOM XSS Sinks (code that writes to DOM unsafely):

SinkPatternRisk Level
innerHTMLel.innerHTML =...High — direct HTML injection
outerHTMLel.outerHTML =...High — replaces entire element
document.write()document.write(...)High — writes to document stream
document.writeln()document.writeln(...)High — same as write with newline
insertAdjacentHTML()el.insertAdjacentHTML(...)High — injects HTML at position
eval()eval(...)Critical — arbitrary code execution
Function()new Function(...)Critical — creates function from string
setTimeout(string)setTimeout("...",...)High — eval equivalent
setInterval(string)setInterval("...",...)High — eval equivalent
$.html()$(sel).html(...)High — jQuery innerHTML wrapper
$(user_input)$(location.hash)Critical — jQuery selector injection
v-htmlv-html="..." directiveHigh — Vue raw HTML binding
dangerouslySetInnerHTMLdangerouslySetInnerHTML={{...}}High — React raw HTML
location.href =location.href =...Medium — open redirect → XSS chain
location.assign()location.assign(...)Medium — redirect sink
location.replace()location.replace(...)Medium — redirect sink
window.open()window.open(...)Medium — navigation sink
navigation.navigate()navigation.navigate(...)Medium — Chrome navigation API
Dynamic import()import(...)High — module loading sink

DOM XSS Sources (where attacker input enters):

SourcePatternNotes
location.hashlocation.hash, window.location.hashFragment — not sent to server
location.searchlocation.search, URLSearchParamsQuery string
location.hreflocation.href (read)Full URL including fragment
document.referrerdocument.referrerAttacker-controlled via link
window.namewindow.namePersists across navigations
document.cookiedocument.cookie (read)If attacker can set cookies
postMessageaddEventListener('message',...)Check origin validation
localStoragelocalStorage.getItem(...)Persistent, attacker-settable
sessionStoragesessionStorage.getItem(...)Session-scoped
URL() constructornew URL(...), url.searchParamsParameter parsing

Source-to-sink tracing (static approximation): For each detected source, trace whether it flows into a sink without sanitization. Flag direct connections (e.g., el.innerHTML = location.hash). Note: full taint analysis requires browser DevTools or dynamic instrumentation — this is a best-effort static scan.

Dangerous constructs:

ConstructPatternXSS Relevance
Global variable declarationsvar config =... on windowDOM clobbering targets (see dom-clobbering anti-pattern)
Prototype pollution gadgetsObject.assign, $.extend, _.merge with user inputGadget chain → XSS
JSONP endpointscallback= parameter in script srcArbitrary JS execution via callback
postMessage without origin checkaddEventListener('message', fn) without event.origin validationAny origin can inject data
Template literal injection` ...${userInput}... ` in dangerous contextsString interpolation into sinks
with statementswith(obj) {...}Scope confusion, clobbering
Relative script loading<script src="./app.js">RPO vulnerability — path confusion

Phase 5: DOM & HTML Analysis

Analyze page structure for XSS-relevant features.

Input vectors:

  • Enumerate all <input>, <textarea>, <select> elements (visible + hidden)
  • Record name, type, id, maxlength, pattern attributes
  • Map forms to their action URLs and method (GET/POST)
  • Flag hidden fields — often unsanitized server-side (reference xss-finder hidden field methodology)
  • Flag file upload forms — SVG upload → stored XSS potential

URL parameter reflection test: For each URL parameter in $ARGUMENTS, check if value appears in response body. If reflected, note the reflection context (HTML body, attribute, script, comment).

Meta tags:

TagCheckXSS Impact
<meta charset>Missing?Enables charset-based XSS (ISO-2022-JP, UTF-7)
<meta http-equiv="Content-Security-Policy">Present?Meta CSP — limited (no frame-ancestors, no report-uri)
<meta http-equiv="refresh">User-controllable URL?Redirect vector

Embedding elements:

  • <iframe> — sandboxed? Is src user-controllable?
  • <object>, <embed> — plugin execution vectors
  • Inline <svg> — enables advanced XSS vectors (onbegin, SMIL <animate>)
  • <math> — MathML namespace confusion for mXSS (reference mutation-xss anti-pattern)

Inline event handlers: Count existing inline event handlers (onclick, onerror, onload, etc.) in page source. High count indicates the framework does not prohibit inline handlers — weak or absent CSP likely.

Third-party embeds:

  • Google Tag Manager (gtm.js) — tag injection surface
  • Analytics scripts (Google Analytics, Mixpanel, Segment) — config manipulation
  • Ad network scripts — additional injection surface
  • Social widgets — cross-origin messaging

Phase 6: Report Generation

Generate a structured report organized for ethical hacker workflow:

# XSS Attack Surface Report

**Target:** {URL}
**Date:** {date}
**Overall XSS Resistance:** {Strong | Moderate | Weak | Minimal}

## Executive Summary
{2-3 sentences: key findings, biggest weaknesses, recommended testing focus}

## Security Headers

| Header | Value | XSS Impact | Assessment |
|--------|-------|------------|------------|
| CSP | {value or MISSING} | {impact} | {Strong/Weak/Missing} |
| X-Content-Type-Options | {value or MISSING} | {impact} | {OK/Missing} |
| Set-Cookie | {flags or MISSING} | {impact} | {assessment} |
| ... | | | |

**Hacker Notes:** {Specific header weaknesses — e.g. "CSP has unsafe-inline, inline
script injection works directly" or "No HttpOnly on session cookie, document.cookie
exfiltration viable"}

## Technology Stack

| Component | Version | XSS Relevance |
|-----------|---------|---------------|
| {library} | {version} | {specific CVE or known bypass} |

**Hacker Notes:** {Which libraries have known bypasses, specific payloads to try}

## Dangerous JavaScript Patterns

### DOM XSS Sinks Found
| Sink | Location | Source Connected | Risk |
|------|----------|-----------------|------|
| innerHTML | inline script line 42 | location.hash | High — direct DOM XSS |
| $.html() | app.js:156 | AJAX response | Medium — depends on server sanitization |

### DOM XSS Sources Found
| Source | Handler | Origin Check | Risk |
|--------|---------|--------------|------|
| postMessage | addEventListener line 88 | No | High — any origin can inject |
| location.hash | hashchange handler | N/A | Medium — client-only input |

### Dangerous Constructs
{DOM clobbering targets, prototype pollution gadgets, JSONP endpoints, relative paths}

**Hacker Notes:** {Specific source→sink chains to investigate, bypass techniques from
xss-finder 5-Rotor methodology}

## Input Vectors

| Input | Type | Reflected | Hidden | Notes |
|-------|------|-----------|--------|-------|
| q | text | Yes | No | Search param reflected in <h1> |
| token | hidden | No | Yes | Likely unsanitized — test stored XSS |

**Hacker Notes:** {Which inputs to fuzz first, client-side restrictions to bypass}

## Best Practices Assessment

| Practice | Status | Hacker Implication |
|----------|--------|--------------------|
| CSP with nonce/hash | {Present/Missing} | {implication for inline injection} |
| HttpOnly cookies | {Present/Missing} | {cookie theft feasibility} |
| DOMPurify/sanitizer | {Present/Missing (version)} | {mXSS bypass options} |
| Trusted Types | {Present/Missing} | {sink restriction status} |
| Subresource Integrity | {Present/Missing} | {CDN MITM feasibility} |
| Meta charset | {Present/Missing} | {charset-based XSS feasibility} |

## Attack Vectors Summary

### High Priority (Test First)
1. {Most promising vector with technique reference}
2. {Second most promising}
3. {Third}

### Medium Priority
1. {Vector with conditional exploitability}
2. ...

### Low Priority (Hardened)
1. {Defended vector — explain what makes it hard}
2. ...

## Recommended Next Steps
1. Run `/xss-finder $URL` for automated payload testing on identified vectors
2. Run `/content-security-policy $URL` for deep CSP analysis
3. {Specific manual tests based on findings — e.g. "Test postMessage handler at
   line 88 with origin-less messages", "Fuzz hidden field 'token' for stored XSS"}

Overall XSS Resistance rating:

  • Strong — CSP with nonce + Trusted Types + sanitizer + HttpOnly cookies + no dangerous sinks
  • Moderate — CSP present but with gaps (e.g. unsafe-inline) OR sanitizer present but outdated
  • Weak — Missing CSP or CSP with wildcards, dangerous sinks present, no sanitizer
  • Minimal — No CSP, no sanitizer, dangerous sinks connected to sources, no HttpOnly

Each finding must reference specific exploitation techniques. Link to xss-finder 5-Rotor methodology where relevant (context detection, bypass cascades, encoding techniques).

Implementation Steps

  1. Validate $ARGUMENTS is a URL (starts with http:// or https://)
  2. Fetch headers with curl -sI -L; fetch body with curl -sL
  3. Fall back to WebFetch if body is minimal (SPA detection)
  4. Extract and fetch external script files (same-origin + CDNs, max 20)
  5. Assess security headers per Phase 2 table
  6. Detect frameworks and libraries; extract versions from filenames/CDN URLs
  7. Cross-reference versions against known vulnerable ranges
  8. Scan inline + external JS for DOM XSS sinks and sources
  9. Trace source→sink connections (static approximation)
  10. Enumerate input elements, forms, hidden fields
  11. Test URL parameter reflection in response body
  12. Check meta tags, embedding elements, inline event handler count
  13. Calculate overall XSS resistance rating
  14. Generate report with Hacker Notes per section

Quality Checklist

Before finalizing:

  • All 6 phases executed (Fetch, Headers, Frameworks, JavaScript, DOM, Report)
  • Security headers table complete — every header checked or marked MISSING
  • Framework/library versions extracted where detectable
  • Vulnerable library versions cross-referenced with specific CVEs
  • DOM XSS sinks and sources enumerated from actual page content
  • Source→sink connections flagged where statically traceable
  • Input vectors include hidden fields
  • URL parameter reflection tested
  • Overall XSS Resistance rating justified by findings
  • Hacker Notes in every report section with actionable exploitation guidance
  • Attack Vectors Summary prioritized by exploitability
  • Next Steps reference /xss-finder and /content-security-policy
  • No active exploitation performed — reconnaissance only

Example Usage

Single URL reconnaissance:

/xss-recon https://example.com/search?q=test

Application homepage:

/xss-surface https://app.example.com

Pre-engagement scoping:

/xss-attack-surface https://target.com/login

References

Related Skills

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.59%
按下载量换算27

Claude

31.3%
按下载量换算25

Cursor

19.8%
按下载量换算16

Gemini CLI

10.2%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills