Fix use of os_flavor to ensure correct target matching

bug/bundler_fix
HD Moore 2014-04-02 07:21:54 -07:00
parent be4a366eab
commit 55d9928186
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class Metasploit3 < Msf::Exploit::Remote
function os() {
var detect = window.os_detect.getVersion();
var os_string = detect.os_name + " " + detect.os_flavor + " " + detect.ua_name + " " + detect.ua_version;
var os_string = detect.os_name + " " + detect.ua_name + " " + detect.ua_version;
return os_string;
}