Trufflehog

Sniffing out credentials

Trufflehog क्या है?

Trufflehog dylan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sniffing out credentials"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Trufflehog एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
            ]
        }
    ]
}