metasploit-framework/lib/gemcache/ruby/1.9.1/gems/metasploit_data_models-0.0....
Tod Beardsley 373c174af3 Updates MDM from upstream.
This pulls in a few recent changes to MDM.
2012-05-18 12:04:33 -05:00
..
bin Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
lib Updates MDM from upstream. 2012-05-18 12:04:33 -05:00
spec Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
.gitignore Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
.rspec Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
Gemfile Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
LICENSE Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
README.mdown Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
Rakefile Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
console_db.yml Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
metasploit_data_models.gemspec Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00
metasploit_data_models_live.gemspec Cutting over rails3 to master. 2012-04-15 23:35:38 -05:00

README.mdown

#MetasploitDataModels

The database layer for Metasploit

Purpose

MetasploitDataModels exists to do several key things:

  1. Allow code sharing between Metasploit Framework (MSF) and the commercial versions of Metasploit (Community, Express, Pro -- usually referred to collectively as "Pro")

  2. Give developers a lightweight entry point to MSF's backend for use in developing tools that gather data intended for later use with Metasploit (e.g. specialized scanners).

  3. Make it easy to keep commercial stuff private while increasing the functionality of the open-source tools we provide to the community.

Usage

Rails

In a Rails application we simply include the ActiveRecord mixins directly, usually inside models with similar names.

MSF

When MetasploitDataModels is included by MSF, the gem dynamically creates ActiveRecord model classes.

Both of these behaviors are based on the assumption that the files in lib/metasploit_data_models/active_record_models, though implemented here as mixins, actually represent the basic ActiveRecord model structure that both Metasploit Framework and Metasploit Pro use.

Elsewhere

NOTE: This isn't in RubyGems yet. Using a Gemfile entry pointing to this repo (i.e., using Bundler) is the suggested option for now.

Usage outside of Rapid7 is still alpha, and we're not making many promises. That being said, usage is easy:

connection_info = YAML.load_file("path/to/rails-style/db_config_file")
ActiveRecord::Base.establish_connection(connection_info['development'])
include MetasploitDataModels
MetasploitDataModels.create_and_load_ar_classes

Basically you need to do the following things:

  1. Establish an ActiveRecord connection. A Rails config/database.yml is ideal for this.
  2. Include the MetasploitDataModels module.
  3. Call the class method that builds the AR models into the Mdm namespace( MetasploitDataModels.create_and_load_ar_classes ).

Developer Info

Console

The gem includes a console based on Pry

Give it a path to a working MSF database.yml file for full ActiveRecord-based access to your data.

Note: "development" mode is hardcoded into the console currently.

ActiveRecord::ConnectionError issues

Because the gem is defining mixins, there can be no knowledge of the specifics of any "current" ActiveRecord connection. But if ActiveRecord encounters something in a child class that would require knowledge of the connection adapter (e.g. the use of an RDBMS-specific function in a named scope's "WHERE" clause), it will check to see if the adapter supports it and then throw an exception when the connection object (which provides the adapter) is nil.

This means that, for all but the most trivial cases, you need to use Arel versions of queries instead of ones utilizing straight SQL.

You'll encounter this sometimes if you do dev work on this gem. A good rule of thumb: anything that goes into the class_eval block must be able to work without knowledge of the AR connection adapter type.