373c174af3
This pulls in a few recent changes to MDM. |
||
---|---|---|
.. | ||
bin | ||
lib | ||
spec | ||
.gitignore | ||
.rspec | ||
Gemfile | ||
LICENSE | ||
README.mdown | ||
Rakefile | ||
console_db.yml | ||
metasploit_data_models.gemspec | ||
metasploit_data_models_live.gemspec |
README.mdown
#MetasploitDataModels
The database layer for Metasploit
Purpose
MetasploitDataModels exists to do several key things:
-
Allow code sharing between Metasploit Framework (MSF) and the commercial versions of Metasploit (Community, Express, Pro -- usually referred to collectively as "Pro")
-
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).
-
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:
- Establish an ActiveRecord connection. A Rails config/database.yml is ideal for this.
- Include the MetasploitDataModels module.
- 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.