Skip to content

Commit 592fa17

Browse files
committed
Merge pull request #26 from jvazquez-r7/review_4724
Make safer Change AllowWin32SEH
2 parents a543d95 + 831a149 commit 592fa17

30 files changed

+47
-2
lines changed

modules/exploits/windows/browser/orbit_connecting.rb

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

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/cain_abel_4918_rdp.rb

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

modules/exploits/windows/fileformat/destinymediaplayer16.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ def initialize(info = {})
3333
'EncoderType' => Msf::Encoder::Type::AlphanumMixed,
3434
'StackAdjustment' => -3500,
3535
},
36+
'DefaultOptions' =>
37+
{
38+
'AllowWin32SEH' => true
39+
},
3640
'Platform' => 'win',
3741
'Targets' =>
3842
[

modules/exploits/windows/fileformat/ezip_wizard_bof.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ def initialize(info = {})
4747
{
4848
'EncoderType' => Msf::Encoder::Type::AlphanumMixed,
4949
},
50+
'DefaultOptions' =>
51+
{
52+
'AllowWin32SEH' => true
53+
},
5054
'Targets' =>
5155
[
5256
['Windows Universal', { 'Offset' => 58, 'Ret' => 0x10020710 }],

modules/exploits/windows/fileformat/ht_mp3player_ht3_bof.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' => 'process',
42+
'AllowWin32SEH' => true
4243
},
4344
'Payload' =>
4445
{

0 commit comments

Comments
 (0)