rastating/wordpress-exploit-framework

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

Summary

Maintainability
A
0 mins
Test Coverage

# frozen_string_literal: true

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

    update_info(
      name: 'SMTP <= 1.0.9 Reflected XSS Shell Upload'
    )
  end

  def plugin_name
    'bws-smtp'
  end

  def fixed_version
    '1.0.9.1'
  end
end