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

filter-js-from-htmlfilter JS from HTML 搜索

Agent Skill

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

总安装

840

周安装

35

GitHub Stars

93

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill filter-js-from-html

简介

filter-js-from-html 用于查找、检索和筛选相关信息。

  • 适合根据关键词快速定位候选结果,支持多种宿主环境。
  • 通过 npx skills add 命令安装,需确认权限范围和维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Filter JavaScript from HTML

Overview

This skill provides guidance for tasks that require removing JavaScript and XSS attack vectors from HTML content while preserving the original formatting exactly. The key challenge is balancing comprehensive security filtering with format preservation.

Critical Requirements Analysis

Before implementation, identify and prioritize these requirements:

  1. Security completeness: All XSS vectors must be removed
  2. Format preservation: Output must be functionally identical to input except for harmful content removal
  3. Clean content handling: Files without XSS content should remain completely unchanged

These requirements often conflict - comprehensive parsing may alter formatting, while simple string replacement may miss attack vectors.

Approach Selection

Option 1: Regex-Based Surgical Removal (Recommended for Format Preservation)

When the task explicitly requires preserving original formatting, prefer regex-based approaches that surgically remove only the dangerous content.

Advantages:

  • Preserves whitespace, attribute ordering, quote styles exactly
  • Does not reconstruct or reformat HTML
  • Output matches input character-for-character except for removed content

Considerations:

  • Requires careful pattern construction to avoid partial matches
  • Must handle various encodings and obfuscation techniques
  • Test patterns against comprehensive XSS vector lists

Option 2: HTML Parser-Based Filtering

When format preservation is less critical or when dealing with malformed HTML.

Considerations:

  • HTML parsers inherently reconstruct output, changing formatting
  • May normalize attribute quotes, whitespace, tag casing
  • Better for malformed HTML that regex cannot reliably parse
  • If using this approach, verify that clean HTML files remain unchanged

Comprehensive XSS Vector Checklist

Before implementing, research and account for ALL of these attack categories:

1. Script Execution Tags

  • <script> tags (including variations with attributes)
  • <noscript> abuse cases

2. Event Handlers (Comprehensive List Required)

Common handlers:

  • onclick, onload, onerror, onmouseover, onfocus, onblur

Frequently missed handlers:

  • onlayoutcomplete, ontimeerror, onselectionchange
  • onrowsinserted, onrowsdelete, onrowexit, onrowenter
  • oncellchange, ondataavailable, ondatasetchanged, ondatasetcomplete
  • onbeforeupdate, onafterupdate, onerrorupdate
  • onfilterchange, onpropertychange, onreadystatechange
  • onbeforeprint, onafterprint, onbeforeunload
  • oncontextmenu, ondrag, ondragend, ondragenter, ondragleave
  • ondragover, ondragstart, ondrop
  • onhashchange, oninput, oninvalid, onpageshow, onpagehide
  • onpopstate, onresize, onstorage, onwheel

Action: Search for comprehensive event handler lists (e.g., MDN, OWASP) rather than relying on memory.

3. JavaScript URL Protocol

  • javascript: in href, src, action, formaction, data, poster attributes
  • Case variations: JavaScript:, JAVASCRIPT:, JaVaScRiPt:
  • Encoded variations: javascript:, javascript:

4. Other Dangerous Protocols

  • vbscript: (IE legacy)
  • data: URIs with script content: data:text/html,<script>...</script>
  • data:text/html;base64,... encoded payloads

5. CSS-Based Attacks

  • <style> tags with dangerous properties
  • -moz-binding (Firefox legacy)
  • expression() (IE legacy)
  • behavior: property
  • @import with javascript or data URIs

6. Meta Tag Attacks

  • <meta http-equiv="refresh" content="0;url=data:text/html,...">
  • <meta http-equiv="refresh" content="0;url=javascript:...">

7. External Resource Loading

  • <link> tags with dangerous href values
  • <object> tags with data attributes
  • <embed> tags with src attributes
  • <applet> tags (legacy)
  • <iframe> with src or srcdoc containing scripts

8. SVG-Based Attacks

  • <svg onload="..."> and other SVG event handlers
  • <svg><script>...</script></svg>
  • SVG <use> with external references

9. Encoding and Obfuscation

  • HTML entity encoding: <script>
  • URL encoding: %3Cscript%3E
  • UTF-7 encoding attacks
  • Null byte injection: <scr\0ipt>
  • Unicode variations

10. HTML Comment Exploits

  • Conditional comments: <!--[if IE]><script>...<![endif]-->
  • Nested comment breaking

Verification Strategy

Test Categories (All Required)

  1. XSS Attack Vectors

- Use established XSS test suites (OWASP XSS Filter Evasion Cheat Sheet) - Test XSS polyglots that combine multiple techniques - Include lesser-known event handlers in tests

  1. Format Preservation

- Provide clean HTML files with varied formatting - Verify byte-for-byte identical output for clean files - Test various whitespace patterns, quote styles, attribute ordering

  1. Edge Cases

- Malformed HTML - Mixed case tags and attributes - Attributes without quotes - Multiple encodings in same document

Testing Process

  1. Research first: Before writing tests, search for:

- OWASP XSS Prevention Cheat Sheet - XSS Filter Evasion Cheat Sheet - Known XSS polyglots - Browser-specific attack vectors

  1. Create adversarial tests: Do not rely solely on self-created test cases

- Use external comprehensive test suites - Include vectors that have bypassed filters historically

  1. Test clean content preservation: Equal priority to security testing

- Create diverse clean HTML samples - Verify no modifications occur - Check whitespace, comments, attribute order

Common Pitfalls

1. Incomplete Event Handler Lists

Mistake: Hardcoding only common event handlers like onclick, onload, onerror. Solution: Research and include ALL valid HTML event handlers, including deprecated and browser-specific ones.

2. Ignoring CSS Attack Vectors

Mistake: Focusing only on JavaScript while ignoring CSS-based XSS. Solution: Filter <style> tags, dangerous CSS properties, and style attributes with expressions.

3. Missing Protocol Handlers

Mistake: Only filtering javascript: protocol. Solution: Also filter vbscript:, data: URIs with dangerous content, and handle encoded protocol names.

4. Format Alteration with Parsers

Mistake: Using HTML parsers when format preservation is required. Solution: If format preservation is critical, use regex-based surgical removal or verify parser output matches input formatting.

5. Self-Validating Tests

Mistake: Creating test cases that match implementation capabilities rather than real attack vectors. Solution: Use external, adversarial test suites created by security researchers.

6. Quote and Encoding Handling

Mistake: Not handling HTML entities in attributes (", '). Solution: Consider how encoded characters in attributes might bypass filters.

7. Forgetting Meta Refresh

Mistake: Not filtering <meta http-equiv="refresh"> with dangerous URLs. Solution: Include meta tags in the filtering scope, especially those with data: or javascript: URLs.

8. Ignoring External Resources

Mistake: Not filtering <link>, <object>, <embed> tags. Solution: Evaluate whether these tags can load or execute dangerous content.

Implementation Checklist

Before considering the implementation complete:

  • Researched comprehensive XSS attack vector lists
  • Implemented filtering for ALL event handlers (not just common ones)
  • Handled script tags and noscript abuse
  • Filtered javascript:, vbscript:, and dangerous data: URIs
  • Addressed CSS-based attacks (style tags, expressions, bindings)
  • Handled meta refresh attacks
  • Considered link, object, embed, applet tags
  • Handled SVG-based attacks
  • Accounted for encoding variations
  • Tested with external XSS test suites
  • Verified clean HTML files remain unchanged
  • Tested format preservation (whitespace, quotes, ordering)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.34%
按下载量换算82

Gemini CLI

24.68%
按下载量换算69

Codex

19.37%
按下载量换算54

Antigravity

13.51%
按下载量换算38

OpenCode

8.28%
按下载量换算23

windsurf

3.68%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills