Trufflehog
Sniffing out credentials
Wat is Trufflehog?
Trufflehog is een Chrome-extensie ontwikkeld door dylan, en de belangrijkste functie is "Sniffing out credentials".
Extensie Screenshots
Download het CRX-bestand van de extensie Trufflehog
Download Trufflehog-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Trufflehog |
ID | bafhdnhjnlcdbjcdcnafhdcphhnfnhjc |
Officiële URL | https://chromewebstore.google.com/detail/trufflehog/bafhdnhjnlcdbjcdcnafhdcphhnfnhjc |
Beschrijving | Sniffing out credentials |
Bestandsgrootte | 34.61 KB |
Aantal Installaties | 6,706 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2021-09-21 |
Publicatiedatum | 2021-09-20 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | dylan |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://trufflesecurity.com |
Help Pagina-URL | https://github.com/trufflesecurity/Trufflehog-Chrome-Extension |
Ondersteunde Talen | 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" ] } ] } |