set the correct schema for linux meterpreter reverse_tcp stages

bug/bundler_fix
Brent Cook 2017-05-03 16:12:45 -05:00
parent 494711ee65
commit 0798923901
5 changed files with 5 additions and 0 deletions

View File

@ -81,6 +81,7 @@ module MetasploitModule
end
def generate_stage(opts = {})
opts = {scheme: 'tcp'}
MetasploitPayloads::Mettle.new('armv5l-linux-musleabi', generate_config(opts)).to_binary :process_image
end
end

View File

@ -92,6 +92,7 @@ module MetasploitModule
end
def generate_stage(opts = {})
opts = {scheme: 'tcp'}
MetasploitPayloads::Mettle.new('mips-linux-muslsf', generate_config(opts)).to_binary :process_image
end
end

View File

@ -92,6 +92,7 @@ module MetasploitModule
end
def generate_stage(opts = {})
opts = {scheme: 'tcp'}
MetasploitPayloads::Mettle.new('mipsel-linux-muslsf', generate_config(opts)).to_binary :process_image
end
end

View File

@ -89,6 +89,7 @@ module MetasploitModule
end
def generate_stage(opts = {})
opts = {scheme: 'tcp'}
MetasploitPayloads::Mettle.new('x86_64-linux-musl', generate_config(opts)).to_binary :process_image
end
end

View File

@ -92,6 +92,7 @@ module MetasploitModule
end
def generate_stage(opts = {})
opts = {scheme: 'tcp'}
MetasploitPayloads::Mettle.new('i486-linux-musl', generate_config(opts)).to_binary :process_image
end
end