rastating/wordpress-exploit-framework

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

Summary

Maintainability
A
0 mins
Test Coverage

# frozen_string_literal: true

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

    update_info(
      name: 'Google Captcha <= 1.27 Reflected XSS Shell Upload'
    )
  end

  def plugin_name
    'google-captcha'
  end

  def fixed_version
    '1.27.1'
  end
end