Trufflehog

Sniffing out credentials

Co to jest Trufflehog?

Trufflehog to rozszerzenie Chrome opracowane przez dylan, a jego główną funkcją jest „Sniffing out credentials”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trufflehog

Pobierz pliki rozszerzeń Trufflehog w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Trufflehog Trufflehog
ID bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
Oficjalny URL https://chromewebstore.google.com/detail/trufflehog/bafhdnhjnlcdbjcdcnafhdcphhnfnhjc
Opis Sniffing out credentials
Rozmiar pliku 34.61 KB
Liczba instalacji 6,706
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2021-09-21
Data Publikacji 2021-09-20
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper dylan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://trufflesecurity.com
Adres URL Strony Pomocy https://github.com/trufflesecurity/Trufflehog-Chrome-Extension
Obsługiwane Języki 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"
            ]
        }
    ]
}