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是由jacob.heath.ncc開發的Chrome擴展程式,該擴展的主要功能是“A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.”。

擴展截圖

screenshot

下載Tracy擴展crx文件

下載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
官方網址 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"
}