#
# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Wipg1000_cmd_injection < BeEF::Core::Command
  def self.options
    @configuration = BeEF::Core::Configuration.instance
    lhost = @configuration.beef_host
    lhost = '' if lhost.to_s.eql?('0.0.0.0')

    [
      { 'name' => 'rhost', 'ui_label' => 'Target Host', 'value' => '192.168.100.10' },
      { 'name' => 'rport', 'ui_label' => 'Target Port', 'value' => '80' },
      { 'name' => 'lhost', 'ui_label' => 'Local Host',  'value' => lhost },
      { 'name' => 'lport', 'ui_label' => 'Local Port',  'value' => '4444' }
    ]
  end

  def post_execute
    save({ 'result' => @datastore['result'] })
  end
end
