Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/andreassundstrom/cve-2020-11023-demonstration
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityLearning & Education
GitHubandreassundstrom/cve-2020-11023-demonstration

cve-2020-11023-demonstration

Demonstration of CVE-2020-11023

View Repository
2 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Jquery XSS - CVE-2020-11023

This is a demonstration of reproducing CVE-2020-11023. Source is mainly from this blog post.

Reproduce

Install npm dependencies with npm install, jQuery 3.4.1 is included as a dependency. Run the project with for example live server for vs code.

The site contains two examples where an input is copied to a div. In the first div the value is copied straight away, and in the second jQuerys .html() function is used to set the content.

One of the examples mentioned in the blog post uses the code "> . Note the malicious looking title of the img-tag, this is still safe and will not execute code.

When using the second input and copying code, jQuery will parse it and do some string manipulation, resulting in two image tags where one of them includes the js-code inside the title.

root@kitploit:~
<img src="https://raw.githubusercontent.com/andreassundstrom/cve-2020-11023-demonstration/main/x" onerror="alert(1)" />

Fix the problem

Run npm install [email protected].

Download Tool