Use snake_case

bug/bundler_fix
jvazquez-r7 2015-09-04 16:27:09 -05:00
parent 15aa5de991
commit 2abfcd00b1
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ class Metasploit4 < Msf::Exploit::Remote
data = post_data.to_s
boundary = post_data.bound
refererUrl =
referer_url =
"https://#{datastore['RHOST']}:#{datastore['RPORT']}" +
"#{datastore['TARGETURI']}"
@ -153,7 +153,7 @@ class Metasploit4 < Msf::Exploit::Remote
'uri' => datastore['TARGETURI'],
'ctype' => "multipart/form-data; boundary=#{boundary}",
'headers' => {
'Referer' => refererUrl
'Referer' => referer_url
},
'data' => data
})