/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/core/payload/linux.rb
20 строк
452 B
dledda-r7
fix: splitting linux prepends to arch-specific mixins
19 дек 2024, 18:54
Не верифицирован
19 дек 2024, 18:54
0d63277
Код
Авторство
О чём код?
# -*- coding: binary -*- ### # # This class is here to implement advanced features for linux-based # payloads. Linux payloads are expected to include this module if # they want to support these features. # ### module Msf::Payload::Linux # # This mixin is chained within payloads that target the Linux platform. # It provides special prepends, to support things like chroot and setuid. # def initialize(info = {}) super(info) end end