Trufflehog

Sniffing out credentials

什麼是Trufflehog?

Trufflehog是由dylan開發的Chrome擴展程式,該擴展的主要功能是“Sniffing out credentials”。

擴展截圖

screenshot

下載Trufflehog擴展crx文件

下載Trufflehog擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The TruffleHog chrome extension looks for API keys and credentials on websites visited, and alerts you if there are any present. This is useful for doing pentests and code reviews, because it helps identify keys that would otherwise either be missed or have to be searched for manually                    

擴展基本資訊

名稱 Trufflehog Trufflehog
ID bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
官方網址 https://chromewebstore.google.com/detail/trufflehog/bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
簡介 Sniffing out credentials
檔案大小 34.61 KB
安裝次數 6,706
目前版本 0.0.1
更新時間 2021-09-21
上架時間 2021-09-20
評分 5.00/5 共 5 次評分
開發者 dylan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://trufflesecurity.com
說明頁面URL https://github.com/trufflesecurity/Trufflehog-Chrome-Extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trufflehog",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Sniffing out credentials",
    "homepage_url": "https:\/\/trufflesecurity.com",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Trufflehog",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}