y4utj4 / vcsmap

vcsmap is a plugin-based tool to scan public version control systems for sensitive information.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vcsmap

vcsmap is a plugin-based tool to scan public version control systems (currently GitHub and possibly Gitlab soon) for sensitive information like access tokens and credentials.

vcsmap screenshot

Installation

Download the source code and run the following command. You need a recent version of Ruby with bundler and you might need build tools like gcc to build the dependencies.

$ bundle

Usage

vcsmap already includes a couple of plugins. Each plugin looks for files that match a certain search query, and extracts the right data from those files. To view all plugins run:

$ ruby vcsmap.rb list

To use a plugin, look up the name of the plugin ([plugin_name]) and run the following command. Data is saved in CSV format to the output directory.

Due to a recent change you need to add a valid Github user_session cookie to .github-cookie.

$ ruby vcsmap.rb run {plugin_name} {pages} {--no-ascii}
  • You need to specify the amount of pages you want to search. Each (GitHub) page has 10 possible results.
  • Use the --no-ascii flag (last) to disable rendering the results as an ASCII table in the command line.

Plugin development

To add a new plugin, create an entry for it in lib/plugin_list.rb and create a new plugin class that extends Vcsmap::Plugin::BasePlugin in lib/plugins.

Each plugin has a @search_string that is used to search for matching files, and a couple of regex matchers to extract the needed data. Of course you don't need to use regex, it's also possible to parse the file (e.g. with JSON), as long as your plugin returns a valid table_header and matching credentials.

The easiest way to develop a new plugin is to copy an simple existing one (like lib/plugins/solr_dataconfig.rb) and modify it until it fits your requirements. Need inspiration? Check out techgaun/github-dorks!.

DISCLAIMER

Using the data obtained by this tool to gain unauthorized to access computer systems or services is ILLEGAL and therefore punishable by law. The author of this tool is not responsible for any damage caused by use/abuse of this tool.

About

vcsmap is a plugin-based tool to scan public version control systems for sensitive information.

License:MIT License


Languages

Language:Ruby 93.7%Language:Shell 6.3%