Trufflehog

Sniffing out credentials

ما هو Trufflehog؟

Trufflehog هو إضافة Chrome تم تطويرها بواسطة dylan، والميزة الرئيسية لها هي "Sniffing out credentials".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trufflehog

قم بتنزيل ملفات الامتداد Trufflehog بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}