Trufflehog

Sniffing out credentials

Cos'è Trufflehog?

Trufflehog è un'estensione di Chrome sviluppata da dylan, e la sua funzione principale è "Sniffing out credentials".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Trufflehog

Scarica i file di estensione Trufflehog in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Trufflehog Trufflehog
ID bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
URL Ufficiale https://chromewebstore.google.com/detail/trufflehog/bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
Descrizione Sniffing out credentials
Dimensione del File 34.61 KB
Conteggio Installazioni 6,706
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-09-21
Data di Pubblicazione 2021-09-20
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore dylan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://trufflesecurity.com
URL della Pagina di Aiuto https://github.com/trufflesecurity/Trufflehog-Chrome-Extension
Lingue Supportate 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"
            ]
        }
    ]
}