Get Git

Find misconfigured, web accessible .git directories on websites you browse.

Was ist Get Git?

Get Git ist eine Chrome-Erweiterung, die von Jack Kingsman entwickelt wurde, und ihr Hauptmerkmal ist "Find misconfigured, web accessible .git directories on websites you browse.".

Erweiterungsscreenshots

screenshot
screenshot

Get Git-Erweiterungs-CRX-Datei herunterladen

Laden Sie Get Git-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Get Git scans websites for web accessible .git directories, which can expose all manner of data including:

* past and present source code
* internal network structure (remote origins)
* sensitive API keys and credentials
* and more!

Quick info is available by clicking on the wrench for an entry, including the config file, .gitignore, the repo description, etc. Now offers unobtrusive CSS notifications!

This project is open source and MIT licensed; contribute at https://github.com/jkingsman/get-git.                    

Grundlegende Informationen zur Erweiterung

Name Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
Offizielle URL https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Beschreibung Find misconfigured, web accessible .git directories on websites you browse.
Dateigröße 173 KB
Installationsanzahl 326
Aktuelle Version 0.1.4
Letztes Update 2019-01-20
Veröffentlichungsdatum 2019-01-20
Bewertung 3.17/5 Insgesamt 6 Bewertungen
Entwickler Jack Kingsman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jkingsman/get-git
Hilfeseite URL https://github.com/jkingsman/get-git
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get Git",
    "version": "0.1.4",
    "description": "Find misconfigured, web accessible .git directories on websites you browse.",
    "author": "Jack Kingsman ",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Get Git",
        "default_icon": {
            "19": "img\/cloudgit19.png",
            "38": "img\/cloudgit38.png"
        },
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "img\/cloudgit16.png",
        "48": "img\/cloudgit48.png",
        "128": "img\/cloudgit128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "audio\/alert.mp3",
        "css\/alert.css"
    ]
}