'\x00' isn't the same as "\x00"

git-svn-id: file:///home/svn/framework3/trunk@13051 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Wei Chen 2011-06-28 19:45:51 +00:00
parent 80643cc152
commit fc33b1d20e
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class Metasploit3 < Msf::Exploit::Remote
},
'Payload' =>
{
'BadChars' => '\x00',
'BadChars' => "\x00",
'StackAdjustment' => -1500,
'DisableNops' => 'True',
},

View File

@ -45,7 +45,7 @@ class Metasploit3 < Msf::Exploit::Remote
{
# wchar_t buf[1024];
'Space' => ((1024*2)+4),
'BadChars' => '\x00',
'BadChars' => "\x00",
'StackAdjustment' => -3500,
},
'Platform' => 'win',