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
公式URL 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
Eメール [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"
            ]
        }
    ]
}