Citrix MetaFrame ICA Published Applications Scanner - Metasploit


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

Module Overview


Name: Citrix MetaFrame ICA Published Applications Scanner
Module: auxiliary/gather/citrix_published_applications
Source code: modules/auxiliary/gather/citrix_published_applications.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 query Citrix Metaframe ICA server to obtain a published list of applications.

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_applications
msf auxiliary(citrix_published_applications) > show targets
    ... a list of targets ...
msf auxiliary(citrix_published_applications) > set TARGET target-id
msf auxiliary(citrix_published_applications) > show options
    ... show and set options ...
msf auxiliary(citrix_published_applications) > 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_applications auxiliary module looks in the msfconsole:

msf6 > use auxiliary/gather/citrix_published_applications

msf6 auxiliary(gather/citrix_published_applications) > show info

       Name: Citrix MetaFrame ICA Published Applications Scanner
     Module: auxiliary/gather/citrix_published_applications
    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 query Citrix Metaframe ICA server to obtain 
  a published list of applications.

References:
  http://www.securiteam.com/exploits/5CP0B1F80S.html

Module Options


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

msf6 auxiliary(gather/citrix_published_applications) > show options

Module options (auxiliary/gather/citrix_published_applications):

   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_applications auxiliary module:

msf6 auxiliary(gather/citrix_published_applications) > show advanced

Module advanced options (auxiliary/gather/citrix_published_applications):

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

msf6 auxiliary(gather/citrix_published_applications) > show actions

Auxiliary actions:

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

Evasion Options


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

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

Citrix did not report any Published Applications. Try the brute force module instead.


Here is a relevant code snippet related to the "Citrix did not report any Published Applications. Try the brute force module instead." error message:

63:	
64:	      if (res.index(server_list_pre) == 0) # good packet, with following data
65:	        print_status("Citrix Applications Reported:\r\n" + res[server_list_pre.length,res.length].gsub("\x00","\r\n"))
66:	      end
67:	    else
68:	      print_error("Citrix did not report any Published Applications. Try the brute force module instead.")
69:	    end
70:	
71:	    disconnect_udp
72:	  end
73:	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.9-dev. For more modules, visit the Metasploit Module Library.

Go back to menu.