diff --git a/plugins/db_mysql.rb b/plugins/db_mysql.rb deleted file mode 100644 index 482937d528..0000000000 --- a/plugins/db_mysql.rb +++ /dev/null @@ -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 - diff --git a/plugins/db_postgres.rb b/plugins/db_postgres.rb deleted file mode 100644 index 90739e9956..0000000000 --- a/plugins/db_postgres.rb +++ /dev/null @@ -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 - diff --git a/plugins/db_sqlite2.rb b/plugins/db_sqlite2.rb deleted file mode 100644 index 08be565d80..0000000000 --- a/plugins/db_sqlite2.rb +++ /dev/null @@ -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 - diff --git a/plugins/db_sqlite3.rb b/plugins/db_sqlite3.rb deleted file mode 100644 index 6187d515a2..0000000000 --- a/plugins/db_sqlite3.rb +++ /dev/null @@ -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 -