Get Git

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

Τι είναι το Get Git;

Το Get Git είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jack Kingsman, και η κύρια λειτουργία του είναι "Find misconfigured, web accessible .git directories on websites you browse.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Get Git

Λήψη αρχείων επέκτασης Get Git σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
Επίσημο URL https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Περιγραφή Find misconfigured, web accessible .git directories on websites you browse.
Μέγεθος Αρχείου 173 KB
Αριθμός Εγκαταστάσεων 326
Τρέχουσα Έκδοση 0.1.4
Τελευταία Ενημέρωση 2019-01-20
Ημερομηνία Δημοσίευσης 2019-01-20
Αξιολόγηση 3.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Jack Kingsman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jkingsman/get-git
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jkingsman/get-git
Υποστηριζόμενες Γλώσσες 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"
    ]
}