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

web-front-scanner卷筒纸正面扫描仪

Agent Skill

web-front-scanner 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,282

周安装

420

GitHub Stars

2

下载量

3,293
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:web-front-scanner(卷筒纸正面扫描仪)
来源仓库:https://github.com/enderphan94/web-front-scanner
安装命令:
openclaw skills install web-front-scanner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install web-front-scanner

简介

执行客户端浏览器安全评估与渗透测试审核。

  • 检测XSS、CSRF、DOM型漏洞等前端安全隐患。
  • 输出详细报告并提出修复建议措施。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 仅限授权范围内使用,禁止非法入侵他人系统。
  • web-front-scanner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
client-side-pentest
description
>

Client-Side / Front-End Security Assessment

A skill for conducting thorough, non-destructive client-side security reviews of web applications, producing a structured Markdown report covering all major browser-facing attack surface categories.


Setup: Fill in Before Starting

Before executing, confirm these values with the user if not already provided:

VariableDescription
TARGETPrimary target URL
LOGINLogin URL or credentials (if authenticated testing is in scope)
CRED_AREASCredential areas needing extra attention
TOOLS_DIRPath to any custom tools folder
SCOPEClient-side and front-end only (unless user explicitly extends)

Authorization & Safety Constraints

  • This assessment is authorized by the asset owner
  • Non-destructive only — no DoS, brute force, spam, mass account creation, credential attacks
  • Keep request volume moderate; avoid noisy scans unless the user explicitly approves
  • Prefer passive analysis first, then low-risk validation
  • Only attempt proof-of-concept when necessary to confirm a finding
  • Never exceed the defined scope without explicit user approval

Mission

Identify the following across the client-side attack surface:

  1. Vulnerable / outdated client-side dependencies (JS libraries, third-party scripts)
  2. Sensitive information exposed in client-side assets (keys, tokens, internal endpoints, configs, source maps)
  3. Client-side vulnerabilities — see full checklist below

Vulnerability Checklist

Cover all of the following (mark each as Confirmed / Likely / Informational / False Positive):

Injection & Scripting

  • [ ] Reflected XSS
  • [ ] Stored XSS
  • [ ] DOM-based XSS
  • [ ] Mutation XSS (mXSS)
  • [ ] Client-Side Template Injection (CSTI)
  • [ ] HTML Injection
  • [ ] CSS Injection
  • [ ] Dangling markup injection
  • [ ] Unsafe use of innerHTML, outerHTML, document.write
  • [ ] Unsafe eval / dynamic code execution

Redirects & Framing

  • [ ] Open redirect
  • [ ] DOM-based open redirect
  • [ ] Reverse tabnabbing / window.opener abuse
  • [ ] Clickjacking / UI redressing
  • [ ] Unsafe iframe embedding
  • [ ] Weak iframe sandboxing
  • [ ] Form action hijacking

Cross-Origin & Trust

  • [ ] CORS misconfiguration
  • [ ] postMessage flaws (origin validation)
  • [ ] Cross-site WebSocket hijacking
  • [ ] Missing Subresource Integrity (SRI) on third-party scripts
  • [ ] Unsafe third-party script trust

Caching & Service Workers

  • [ ] Web cache deception
  • [ ] Web cache poisoning
  • [ ] Service worker abuse / misconfiguration
  • [ ] Offline cache poisoning

Data Exposure

  • [ ] JWT / token leakage in localStorage / sessionStorage / cookies
  • [ ] Sensitive data in JS bundles or source
  • [ ] Source map exposure (.map files reachable)
  • [ ] Hardcoded secrets / API keys in frontend code
  • [ ] Stack traces or debug data visible to client
  • [ ] Hidden admin functionality / feature flags exposed

Client-Side Logic & Manipulation

  • [ ] Client-side authorization bypass
  • [ ] Business logic manipulation in browser
  • [ ] Parameter tampering
  • [ ] Hidden field manipulation
  • [ ] Client-side prototype pollution
  • [ ] Insecure client-side deserialization
  • [ ] Client-side path traversal
  • [ ] DOM clobbering

Browser & Misc

  • [ ] CSRF risk from frontend request patterns
  • [ ] Mixed content
  • [ ] MIME sniffing / content-type confusion
  • [ ] Referer leakage
  • [ ] Browser history leakage
  • [ ] Autofill abuse / credential leakage
  • [ ] Clipboard abuse
  • [ ] File upload client-side validation bypass
  • [ ] XS-Leaks
  • [ ] LocalStorage / SessionStorage abuse
  • [ ] Vulnerable third-party JavaScript libraries (CVE-matched)

Methodology (Execute in Order)

Phase 1 — Reconnaissance & Asset Enumeration

  • Crawl target: enumerate pages, scripts, endpoints, static assets
  • Identify JS bundles, source maps (.map), manifests, service workers, web workers
  • Enumerate first-party and third-party JS resources (CDN scripts, analytics, tag managers)
  • Check storage usage: localStorage, sessionStorage, IndexedDB, cookies
  • Identify public config artifacts: robots.txt, sitemap.xml, .well-known/*, manifest.json
  • Review HTTP response headers: CSP, CORS, X-Frame-Options, X-Content-Type-Options,

Referrer-Policy, Permissions-Policy, HSTS

Tools to use: curl, wget, browser DevTools, gau, waybackurls, hakrawler, katana, subfinder, httpx, nuclei, custom scripts in TOOLS_DIR, Chrome (manual review)

Phase 2 — Static Analysis

  • Download and review all reachable JS bundles and source maps
  • Search for: hardcoded keys, tokens, credentials, internal URLs, debug flags, feature flags
  • Parse source maps to reconstruct original source where available
  • Identify JS library names and versions; cross-reference against known CVEs (RetireJS, Snyk DB)
  • Review HTML for: inline scripts, hidden fields, form actions, iframes, rel="noopener" presence
  • Review CSP policy for bypasses (wildcards, unsafe-inline, unsafe-eval, missing directives)

Tools: retire.js, npm audit, semgrep, grep/ripgrep, browser DevTools Sources tab, js-beautify, source-map CLI

Phase 3 — Targeted Low-Risk Runtime Validation

  • Open the target in Chrome; observe network requests, console errors, storage
  • Test CORS by issuing cross-origin requests with crafted Origin headers
  • Check postMessage handlers: send crafted messages with untrusted origins
  • Test open redirect candidates with controlled payloads
  • Test XSS candidates with non-alerting, non-destructive probes (e.g., unique string reflection)
  • Inspect cookies: flags (HttpOnly, Secure, SameSite), scope, expiry
  • Check service workers: scope, fetch event handlers, cache strategies
  • Test iframe embedding from external origin

Phase 4 — Risk Confirmation (Only Where Needed)

  • Construct minimal PoC to confirm exploitability where finding is likely but unconfirmed
  • Do not automate or repeat; single manual validation only
  • Document exact reproduction steps

JavaScript Library Review Format

For each identified library:

FieldValue
Library name
Detected version
File path / URL
Evidence
Known CVEs / issues
AssessmentVulnerable / Outdated / OK
Security relevance

Running Log (Keep Updated Throughout)

Maintain a running log as you work:

[STEP] Description of action
[TOOL] Tool and command used
[OUTPUT] Key evidence or finding
[CONFIDENCE] High / Medium / Low

Output

Save the final report as:

client_side_pentest_report.md

in the current working directory.


Report Structure

# Client-Side Penetration Test Report

## Executive Summary
## Scope & Assumptions
## Methodology
## Asset Inventory (client-side relevant)
## JavaScript Library Inventory
## Sensitive Data Exposure Findings
## Vulnerability Findings
## Informational Observations
## False Positives Ruled Out
## Recommended Remediation
## Appendix (commands, URLs, raw evidence, notes)

Per-Finding Format

### [FINDING TITLE]

- **Severity**: Critical / High / Medium / Low / Informational
- **CWE**: CWE-XXXX — [name]
- **Affected asset(s)**:
- **Description**:
- **Evidence**:
- **Reproduction steps**:
- **Security impact**:
- **Likelihood / Confidence**: Confirmed / Likely / Informational / False Positive
- **Remediation**:
- **References**:

Execution Style

  • Be systematic, concise, and technical
  • Prefer high signal over noisy output
  • Do not stop at the first issue — continue until all phases are complete
  • Distinguish clearly between Confirmed, Likely, Informational, and False Positive findings
  • Do not overstate severity; be skeptical and evidence-driven
  • If a noisier step is needed (e.g., active scanning, fuzzing), pause and ask the user for approval

with a clear explanation of what will be done and why

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.99%
按下载量换算3,062

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills