Files
metasploit-gs/plugins/db_sqlite2.rb
T

24 lines
573 B
Ruby
Raw Normal View History

2010-05-03 17:13:09 +00:00
#
# $Id$
# $Revision$
#
2009-04-14 03:54:18 +00:00
module Msf
2010-08-05 02:23:34 +00:00
class Plugin::DeprecatedSqlite2 < Msf::Plugin
2009-04-14 03:54:18 +00:00
def name
"Deprecated_plugin_stub"
end
def initialize(framework, opts)
super
print_error("")
print_error("The functionality previously provided by this plugin has been")
print_error("integrated into the core command set. Use the new 'db_driver'")
print_error("command to use a database driver other than sqlite3 (which")
print_error("is now the default). All of the old commands are the same.")
print_error("")
raise RuntimeError.new("Deprecated plugin")
2009-04-14 03:54:18 +00:00
end
end
end