Get Git

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

Co to jest Get Git?

Get Git to rozszerzenie Chrome opracowane przez Jack Kingsman, a jego główną funkcją jest „Find misconfigured, web accessible .git directories on websites you browse.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Get Git

Pobierz pliki rozszerzeń Get Git w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
Oficjalny URL https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Opis Find misconfigured, web accessible .git directories on websites you browse.
Rozmiar pliku 173 KB
Liczba instalacji 326
Aktualna Wersja 0.1.4
Ostatnia Aktualizacja 2019-01-20
Data Publikacji 2019-01-20
Ocena 3.17/5 Łącznie 6 Oceny
Deweloper Jack Kingsman
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jkingsman/get-git
Adres URL Strony Pomocy https://github.com/jkingsman/get-git
Obsługiwane Języki 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"
    ]
}