/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/payloads/adapters/cmd/linux/https/riscv32le.rb
25 строк
727 B
bcoles
Add Linux RISC-V command payload adapters
27 ноя 2025, 12:46
Не верифицирован
27 ноя 2025, 12:46
2d414d3
Код
Авторство
О чём код?
## # 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 32-bit payload from an HTTPS server.', 'Author' => ['Brendan Watters', 'Spencer McIntyre', 'bcoles'], 'Platform' => 'linux', 'Arch' => ARCH_CMD, 'License' => MSF_LICENSE, 'AdaptedArch' => ARCH_RISCV32LE, 'AdaptedPlatform' => 'linux' ) ) end end