rastating/wordpress-exploit-framework

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

Summary

Maintainability
A
0 mins
Test Coverage

# frozen_string_literal: true

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

    update_info(
      name: 'Limit Attempts <= 1.1.7 Reflected XSS Shell Upload'
    )
  end

  def plugin_name
    'limit-attempts'
  end

  def fixed_version
    '1.1.7.1'
  end
end