Skip to content

Commit 831a149

Browse files
committed
Keep default behavior for modules forcing Msf::Encoder::Type::AlphanumUpper
1 parent 3e7e9ae commit 831a149

20 files changed

+25
-2
lines changed

modules/exploits/windows/browser/xmplay_asx.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def initialize(info = {})
2828
[ 'BID', '21206'],
2929
[ 'URL', 'http://secunia.com/advisories/22999/' ],
3030
],
31-
3231
'DefaultOptions' =>
3332
{
3433
'EXITFUNC' => 'process',
34+
'AllowWin32SEH' => true
3535
},
3636
'Payload' =>
3737
{

modules/exploits/windows/fileformat/acdsee_xpm.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def initialize(info = {})
3232
{
3333
'EXITFUNC' => 'process',
3434
'DisablePayloadHandler' => 'true',
35+
'AllowWin32SEH' => true
3536
},
3637
'Payload' =>
3738
{

modules/exploits/windows/fileformat/adobe_illustrator_v14_eps.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def initialize(info = {})
3131
{
3232
'EXITFUNC' => 'seh',
3333
'DisablePayloadHandler' => 'true',
34+
'AllowWin32SEH' => true
3435
},
3536
'Payload' =>
3637
{

modules/exploits/windows/fileformat/audio_wkstn_pls.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def initialize(info = {})
3232
{
3333
'EXITFUNC' => 'seh',
3434
'DisablePayloadHandler' => 'true',
35+
'AllowWin32SEH' => true
3536
},
3637
'Payload' =>
3738
{

modules/exploits/windows/fileformat/blazedvd_plf.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ def initialize(info = {})
3535
],
3636
'DefaultOptions' =>
3737
{
38-
'EXITFUNC' => 'process'
38+
'EXITFUNC' => 'process',
39+
'AllowWin32SEH' => true
3940
},
4041
'Payload' =>
4142
{
4243
'Space' => 750,
4344
'BadChars' => "\x00\x0a\x1a",
4445
'DisableNops' => true
4546
},
47+
4648
'Platform' => 'win',
4749
'Targets' =>
4850
[

modules/exploits/windows/fileformat/safenet_softremote_groupname.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def initialize(info = {})
3232
{
3333
'EXITFUNC' => 'process',
3434
'DisablePayloadHandler' => 'true',
35+
'AllowWin32SEH' => true
3536
},
3637
'Payload' =>
3738
{

modules/exploits/windows/fileformat/vuplayer_cue.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def initialize(info = {})
2929
{
3030
'EXITFUNC' => 'process',
3131
'DisablePayloadHandler' => 'true',
32+
'AllowWin32SEH' => true
3233
},
3334
'Payload' =>
3435
{

modules/exploits/windows/fileformat/vuplayer_m3u.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def initialize(info = {})
2929
{
3030
'EXITFUNC' => 'process',
3131
'DisablePayloadHandler' => 'true',
32+
'AllowWin32SEH' => true
3233
},
3334
'Payload' =>
3435
{

modules/exploits/windows/games/racer_503beta5.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ def initialize(info = {})
3434
'BadChars' => "\x5c\x00",
3535
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
3636
},
37+
'DefaultOptions' =>
38+
{
39+
'AllowWin32SEH' => true
40+
},
3741
'Platform' => 'win',
3842
'Targets' =>
3943
[

modules/exploits/windows/http/apache_mod_rewrite_ldap.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def initialize(info = {})
3939
'DefaultOptions' =>
4040
{
4141
'EXITFUNC' => 'thread',
42+
'AllowWin32SEH' => true
4243
},
4344
'Privileged' => true,
4445
'Platform' => ['win'],

0 commit comments

Comments
 (0)