remove deprecated db plugins.

git-svn-id: file:///home/svn/framework3/trunk@13049 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2011-06-28 18:05:21 +00:00
parent c1935eda06
commit b53d23ebac
4 changed files with 0 additions and 92 deletions

View File

@ -1,23 +0,0 @@
#
# $Id$
# $Revision$
#
module Msf
class Plugin::DeprecatedMysql < Msf::Plugin
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")
end
end
end

View File

@ -1,23 +0,0 @@
#
# $Id$
# $Revision$
#
module Msf
class Plugin::DeprecatedPostgres < Msf::Plugin
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")
end
end
end

View File

@ -1,23 +0,0 @@
#
# $Id$
# $Revision$
#
module Msf
class Plugin::DeprecatedSqlite2 < Msf::Plugin
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")
end
end
end

View File

@ -1,23 +0,0 @@
##
# $Id$
# $Revision$
##
module Msf
class Plugin::DeprecatedSqlite3 < Msf::Plugin
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")
end
end
end