/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/base/sessions/meterpreter_multi_linux.rb
26 строк
523 B
bwatters-r7
Another attampt at fetch multi
01 июн 2026, 22:14
01 июн 2026, 22:14
8521c19
Код
Авторство
О чём код?
# -*- coding: binary -*- module Msf module Sessions ### # # This class creates a platform-specific, architecture agnostic meterpreter session type # ### class MeterpreterMultiLinux < Msf::Sessions::Meterpreter def supports_ssl? false end def supports_zlib? false end def initialize(rstream, opts = {}) super self.base_platform = 'linux' self.base_arch = ARCH_ANY # will be populated automatically end end end end