Skip to content

Commit 6d35867

Browse files
committed
Update module description
1 parent 8e7361d commit 6d35867

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

modules/post/multi/manage/dbvis_add_db_admin.rb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ def initialize(info={})
1515
super( update_info( info,
1616
'Name' => 'Multi Manage Dbvis Add Db Admin',
1717
'Description' => %q{
18-
Dbvisulaizer offers a command line functionality to execute SQL pre-configured databases (With GUI).
19-
The remote database can be accessed from the command line without the need to authenticate.
20-
The module abuses this functionality to create an administrator in the database if DB user rights allow it.
21-
Supported databases : mysql (More supported soon).
18+
Dbvisulaizer offers a command line functionality to execute SQL pre-configured databases
19+
(With GUI). The remote database can be accessed from the command line without the need
20+
to authenticate, which can be abused to create an administrator in the database with the
21+
proper database permissions. Note: This module currently only supports MySQL.
2222
},
2323
'License' => MSF_LICENSE,
2424
'Author' => [ 'David Bloom' ], # Twitter: @philophobia78
@@ -29,11 +29,12 @@ def initialize(info={})
2929
'Platform' => %w{ linux win },
3030
'SessionTypes' => [ 'meterpreter' ]
3131
))
32+
3233
register_options(
3334
[
34-
OptString.new('DBALIAS', [true,'Use dbvis_enum module to find out databases and aliases', 'localhost']),
35-
OptString.new('DBUSERNAME', [true,'The user you want to add to the remote database', 'msf']),
36-
OptString.new('DBPASSWORD', [true,'User password to set', 'msfRocks'])
35+
OptString.new('DBALIAS', [true,'Use dbvis_enum module to find out databases and aliases', 'localhost']),
36+
OptString.new('DBUSERNAME', [true,'The user you want to add to the remote database', 'msf']),
37+
OptString.new('DBPASSWORD', [true,'User password to set', 'msfRocks'])
3738
], self.class)
3839

3940
end

0 commit comments

Comments
 (0)