Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fcavallarin/burp-dom-scanner
Burp Suite's extension to scan and crawl Single Page Applications
https://github.com/fcavallarin/burp-dom-scanner
crawling dom scanning single-page-applications xss xss-detection
Last synced: 3 months ago
JSON representation
Burp Suite's extension to scan and crawl Single Page Applications
- Host: GitHub
- URL: https://github.com/fcavallarin/burp-dom-scanner
- Owner: fcavallarin
- License: gpl-3.0
- Created: 2023-02-15T09:58:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-14T15:34:08.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T22:30:00.121Z (4 months ago)
- Topics: crawling, dom, scanning, single-page-applications, xss, xss-detection
- Language: Java
- Homepage:
- Size: 108 KB
- Stars: 98
- Watchers: 3
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Burp DOM Scanner
It's a Burp Suite's extension to allow for recursive crawling and scanning of Single Page Applications.
It runs a Chromium browser to scan the webpage for DOM-based XSS.
It can also collect all the requests (XHR, fetch, websockets, etc) issued during the crawling allowing them to be forwarded to Burp's Proxy, Repeater and Intruder.
It requires node and [DOMDig](https://github.com/fcavallarin/domdig).
# Download
Latest release can be downloaded [here](https://github.com/fcavallarin/burp-dom-scanner/releases/latest/download/burp-dom-scanner.jar)# Installation
1. Install [node](https://nodejs.org)
2. Install [DOMDig](https://github.com/fcavallarin/domdig)
3. Download and load the extension
4. Set both the path of `node`'s executable and the path of `domdig.js` in the extension's UI.# Scanning Engine
Burp DOM Scanner uses [DOMDig](https://github.com/fcavallarin/domdig) as the crawling and scanning engine.## DOMDig
DOMDig is a DOM XSS scanner that runs inside the Chromium web browser and it can scan single page applications (SPA) recursively.
Unlike other scanners, DOMDig can crawl any webapplication (including gmail) by keeping track of DOM modifications and XHR/fetch/websocket requests and it can simulate a real user interaction by firing events. During this process, XSS payloads are put into input fields and their execution is tracked in order to find injection points and the related URL modifications.## Usage and Details
Details about usage, performed checks and reported vulnerabilities, can be found at [DOMDig's page](https://github.com/fcavallarin/domdig)# Some screenshots
![Burp DOM Scanner Screenshots](https://htcrawl.org/img/burp-dom-scanner-all.png)