rastating/wordpress-exploit-framework

View on GitHub
lib/wpxf/modules/exploit/shell/method_revslider_shell_upload.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Wpxf::Exploit::MethodRevsliderShellUpload < Wpxf::Exploit::RevsliderShellUpload
  def initialize
    super

    update_info(
      name: 'Method Theme RevSlider <= 3.0.95 Shell Upload',
      desc: 'This module exploits a file upload vulnerability in versions of '\
            'the Method theme that include versions <= 3.0.95 of the '\
            'RevSlider plugin which allows unauthenticated users to upload '\
            'and execute PHP scripts in the context of the web server.'
    )
  end
end