DOM based XSS finder

A Chrome extension for finding DOM based XSS vulnerabilities

DOM based XSS finderคืออะไร?

DOM based XSS finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย askn และคุณลักษณะหลักของมันคือ "A Chrome extension for finding DOM based XSS vulnerabilities"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DOM based XSS finder

ดาวน์โหลดไฟล์ส่วนขยาย DOM based XSS finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        "DOM based XSS finder" is a Chrome extension that finds DOM based XSS vulnerabilities.

Finding DOM based XSS can be bothersome. This extension can be helpful. This extension has the following features:

- Notify if a user-input such as "location.href" leads to a dangerous function such as "eval".
- Fuzzing for user-inputs such as query, hash and referrer.
- Generate a PoC that generates a alert prompt.

This extension is actively developed. More features will be added in later versions.

**This tool is a dynamic JavaScript tracer, not a static JavaScript scanner. So you must execute JavaScript by manual crawling with this extension starting.**

Usage
1. Click the icon and hit "Start".
2. Browse pages that you want to scan.
3. If the extension finds a possible vulnerability of DOM based XSS, the extension shows a entry for that url.
4. Click "Detail" in the entry. A popup window show a source and a sink of the possible vulnerability.
5. Click "Check and Generate PoC" in the popup window. You can fuzzing the url.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DOM based XSS finder DOM based XSS finder
ID ngmdldjheklkdchgkgnjoaabgejcnnoi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/dom-based-xss-finder/ngmdldjheklkdchgkgnjoaabgejcnnoi
คำอธิบาย A Chrome extension for finding DOM based XSS vulnerabilities
ขนาดไฟล์ 2.46 MB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-11-19
วันที่เผยแพร่ 2020-02-05
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา askn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/AsaiKen/dom-based-xss-finder
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM based XSS finder",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "A Chrome extension for finding DOM based XSS vulnerabilities",
    "permissions": [
        "storage",
        "webNavigation",
        "tabs",
        "*:\/\/*\/",
        "debugger",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "images\/app_icon_16.png",
        "128": "images\/app_icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "images\/icon-black.png",
        "default_title": "DOM based XSS finder",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}