/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/payloads/adapters/cmd/linux/http/multi.rb
25 строк
741 B
bwatters-r7
Fix rspec tests, rubocop linting, tnftp cert checking
01 июн 2026, 22:14
01 июн 2026, 22:14
5d5e9ae
Код
Авторство
О чём код?
## # 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 a script to determine the host arch and execute a payload from an HTTP server.', 'Author' => ['Brendan Watters', 'Spencer McIntyre'], 'Platform' => 'linux', 'Arch' => ARCH_CMD, 'License' => MSF_LICENSE, 'AdaptedArch' => ARCH_ANY, 'AdaptedPlatform' => 'linux' ) ) end end