Trufflehog

Sniffing out credentials

Trufflehog란 무엇입니까?

Trufflehog은(는) dylan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sniffing out credentials"입니다.

확장 프로그램 스크린샷

screenshot

Trufflehog 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}