Get Git

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

Cos'è Get Git?

Get Git è un'estensione di Chrome sviluppata da Jack Kingsman, e la sua funzione principale è "Find misconfigured, web accessible .git directories on websites you browse.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Get Git

Scarica i file di estensione Get Git in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
URL Ufficiale https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Descrizione Find misconfigured, web accessible .git directories on websites you browse.
Dimensione del File 173 KB
Conteggio Installazioni 326
Versione Corrente 0.1.4
Ultimo Aggiornamento 2019-01-20
Data di Pubblicazione 2019-01-20
Valutazione 3.17/5 Totale 6 Valutazioni
Sviluppatore Jack Kingsman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jkingsman/get-git
URL della Pagina di Aiuto https://github.com/jkingsman/get-git
Lingue Supportate 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"
    ]
}