Resolve #4986, add support for IE11 for fingerprint_user_agent

Resolve #4986
bug/bundler_fix
sinn3r 2015-03-27 17:51:14 -05:00
parent 9cfafdd8b8
commit c4def25e82
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ module Exploit::Remote::HttpServer
when /opera\/(\d+(:?\.\d+)*)/
fp[:ua_name] = HttpClients::OPERA
fp[:ua_ver] = $1
when /mozilla\/[0-9]+\.[0-9] \(compatible; msie ([0-9]+\.[0-9]+)/
when /mozilla\/[0-9]+\.[0-9] \(compatible; msie ([0-9]+\.[0-9]+)/, /mozilla\/[0-9]+\.[0-9] \(.+ rv:([0-9]+\.[0-9])\)/
fp[:ua_name] = HttpClients::IE
fp[:ua_ver] = $1
else