rastating/wordpress-exploit-framework

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

Summary

Maintainability
A
0 mins
Test Coverage

# frozen_string_literal: true

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

    update_info(
      name: 'Google Shortlink <= 1.5.2 Reflected XSS Shell Upload'
    )
  end

  def plugin_name
    'google-shortlink'
  end

  def fixed_version
    '1.5.2.1'
  end
end