Tracy

A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.

Tracyคืออะไร?

Tracy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacob.heath.ncc และคุณลักษณะหลักของมันคือ "A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tracy

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

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

                        There are many different ways to trigger XSS, especially considering the large number of frontend frameworks that have been made popular in the last few years. For example, some of the less traditional ways of exploiting XSS can be through:

* DOM clobbering
* DOM injection
* Frontend template injection
* Backend template injection
* Open redirects

These attack vectors are significantly different than traditional stored and reflected XSS cases and they require new tools for finding them effectively.

Many similar tools only look for server response reflection, however this is not very helpful if all output encoding is performed by the frontend. In order to really gain knowledge about all the true sinks of the application, we need a tool that grants us "X-ray vision into the DOM".

This extensions was written with the goal of eliminating XSS by assisting a  penetration tester in identifying every source of input into an application and following that input to all of its sinks. These cases are documented and stored as references that can be used to identify the locations of potentially risky input.                    

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

ชื่อ Tracy Tracy
ID lcgbimfijafcjjijgjoodgpblgmkckhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tracy/lcgbimfijafcjjijgjoodgpblgmkckhn
คำอธิบาย A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.
ขนาดไฟล์ 899 KB
จำนวนการติดตั้ง 670
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2021-05-21
วันที่เผยแพร่ 2020-05-11
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา jacob.heath.ncc
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/nccgroup/tracy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "",
        "storage",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "page.css"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Tracy",
        "default_icon": {
            "16": "tracy_16x16.png",
            "48": "tracy_48x48.png",
            "96": "tracy_96x96.png",
            "128": "tracy_128x128.png"
        }
    },
    "web_accessible_resources": [
        "page.bundle.js",
        "databaseWorker.bundle.js",
        "searchWorker.bundle.js"
    ],
    "manifest_version": 2,
    "name": "Tracy",
    "description": "A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.",
    "version": "0.9.2"
}