2014-05-12 20:03:51 +00:00
|
|
|
#!/usr/bin/env rake
|
|
|
|
require File.expand_path('../config/application', __FILE__)
|
2014-07-30 15:10:20 +00:00
|
|
|
require 'metasploit/framework/require'
|
2014-10-23 15:24:33 +00:00
|
|
|
require 'metasploit/framework/spec/untested_payloads'
|
2014-07-30 15:10:20 +00:00
|
|
|
|
|
|
|
# @note must be before `Metasploit::Framework::Application.load_tasks`
|
|
|
|
#
|
|
|
|
# define db rake tasks from activerecord if activerecord is in the bundle. activerecord could be not in the bundle if
|
|
|
|
# the user installs with `bundle install --without db`
|
|
|
|
Metasploit::Framework::Require.optionally_active_record_railtie
|
2012-10-01 18:09:30 +00:00
|
|
|
|
2014-05-12 20:03:51 +00:00
|
|
|
Metasploit::Framework::Application.load_tasks
|
2014-10-23 15:24:33 +00:00
|
|
|
Metasploit::Framework::Spec::UntestedPayloads.define_task
|