Trufflehog

Sniffing out credentials

Trufflehogคืออะไร?

Trufflehog เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dylan และคุณลักษณะหลักของมันคือ "Sniffing out credentials"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trufflehog

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}