Citrix MetaFrame ICA Published Applications Bruteforcer - Metasploit


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

Module Overview


Name: Citrix MetaFrame ICA Published Applications Bruteforcer
Module: auxiliary/gather/citrix_published_bruteforce
Source code: modules/auxiliary/gather/citrix_published_bruteforce.rb
Disclosure date: -
Last modification time: 2017-11-09 03:00:24 +0000
Supported architecture(s): -
Supported platform(s): -
Target service / protocol: -
Target network port(s): 1604
List of CVEs: -

This module attempts to brute force program names within the Citrix Metaframe ICA server.

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


msf > use auxiliary/gather/citrix_published_bruteforce
msf auxiliary(citrix_published_bruteforce) > show targets
    ... a list of targets ...
msf auxiliary(citrix_published_bruteforce) > set TARGET target-id
msf auxiliary(citrix_published_bruteforce) > show options
    ... show and set options ...
msf auxiliary(citrix_published_bruteforce) > exploit

Required Options


  • RHOSTS: The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'

Go back to menu.

Msfconsole Usage


Here is how the gather/citrix_published_bruteforce auxiliary module looks in the msfconsole:

msf6 > use auxiliary/gather/citrix_published_bruteforce

msf6 auxiliary(gather/citrix_published_bruteforce) > show info

       Name: Citrix MetaFrame ICA Published Applications Bruteforcer
     Module: auxiliary/gather/citrix_published_bruteforce
    License: Metasploit Framework License (BSD)
       Rank: Normal

Provided by:
  aushack <[email protected]>

Check supported:
  No

Basic options:
  Name    Current Setting  Required  Description
  ----    ---------------  --------  -----------
  RHOSTS                   yes       The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'
  RPORT   1604             yes       The target port (UDP)

Description:
  This module attempts to brute force program names within the Citrix 
  Metaframe ICA server.

References:
  OSVDB (50617)
  http://www.securityfocus.com/bid/5817

Module Options


This is a complete list of options available in the gather/citrix_published_bruteforce auxiliary module:

msf6 auxiliary(gather/citrix_published_bruteforce) > show options

Module options (auxiliary/gather/citrix_published_bruteforce):

   Name    Current Setting  Required  Description
   ----    ---------------  --------  -----------
   RHOSTS                   yes       The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'
   RPORT   1604             yes       The target port (UDP)

Advanced Options


Here is a complete list of advanced options supported by the gather/citrix_published_bruteforce auxiliary module:

msf6 auxiliary(gather/citrix_published_bruteforce) > show advanced

Module advanced options (auxiliary/gather/citrix_published_bruteforce):

   Name       Current Setting  Required  Description
   ----       ---------------  --------  -----------
   CHOST                       no        The local client address
   CPORT                       no        The local client port
   VERBOSE    false            no        Enable detailed status messages
   WORKSPACE                   no        Specify the workspace for this module

Auxiliary Actions


This is a list of all auxiliary actions that the gather/citrix_published_bruteforce module can do:

msf6 auxiliary(gather/citrix_published_bruteforce) > show actions

Auxiliary actions:

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

Evasion Options


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

msf6 auxiliary(gather/citrix_published_bruteforce) > 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.

NOT Found: <APPLICATION>


Here is a relevant code snippet related to the "NOT Found: <APPLICATION>" error message:

164:	        if (res[0,application_valid.length] == application_valid)
165:	          print_status("Found: #{application}")
166:	        end
167:	
168:	        if (res[0,application_invalid.length] == application_invalid)
169:	          print_error("NOT Found: #{application}")
170:	        end
171:	      end
172:	
173:	    else
174:	      print_error("Server did not respond.")

Server did not respond.


Here is a relevant code snippet related to the "Server did not respond." error message:

169:	          print_error("NOT Found: #{application}")
170:	        end
171:	      end
172:	
173:	    else
174:	      print_error("Server did not respond.")
175:	    end
176:	
177:	    disconnect_udp
178:	  end
179:	end

Go back to menu.


References


See Also


Check also the following modules related to this module:

Authors


  • aushack

Version


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

Go back to menu.