/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/util/exe/windows.rb
54 строки
2 KB
Martin Sutovsky
Adds binary encoding to all files created in exe split
24 мар 2026, 19:47
Не верифицирован
24 мар 2026, 19:47
8f08b1f
Код
Авторство
О чём код?
# -*- coding: binary -*- module Msf::Util::EXE::Windows include Msf::Util::EXE::Common include Msf::Util::EXE::Windows::Common include Msf::Util::EXE::Windows::Aarch64 include Msf::Util::EXE::Windows::X64 include Msf::Util::EXE::Windows::X86 def self.included(base) base.extend(ClassMethods) end module ClassMethods def to_executable_windows(framework, arch, code, fmt = 'exe', opts = {}) exe_formats = ['exe', 'exe-service', 'dll', 'dll-dccw-gdiplus'] exe_fmt ||= 'exe-small' if ['vba-exe', 'vbs', 'loop-vbs', 'asp', 'aspx-exe'].include?(fmt) exe_fmt = 'exe' exe_fmt = fmt if exe_formats.include?(fmt) exe = nil exe = to_executable_windows_x86(framework, code, exe_fmt, opts) if arch.index(ARCH_X86) exe = to_executable_windows_x64(framework, code, exe_fmt, opts) if arch.index(ARCH_X64) exe = to_executable_windows_aarch64(framework, code, exe_fmt, opts) if arch.index(ARCH_AARCH64) return exe if exe_formats.include?(fmt) # Returning only the exe end def to_executable_windows_aarch64(framework, code, fmt = 'exe', opts = {}) return to_winaarch64pe(framework, code, opts) if fmt == 'exe' end def to_executable_windows_x64(framework, code, fmt = 'exe', opts = {}) return to_win64pe(framework, code, opts) if fmt == 'exe' return to_win64pe(framework, code, opts) if fmt == 'exe-small' return to_win64pe_service(framework, code, opts) if fmt == 'exe-service' return to_win64pe_dll(framework, code, opts) if fmt == 'dll' return to_win64pe_dccw_gdiplus_dll(framework, code, opts) if fmt == 'dll-dccw-gdiplus' end def to_executable_windows_x86(framework, code, fmt = 'exe', opts = {}) return to_win32pe(framework, code, opts) if fmt == 'exe' return to_win32pe_service(framework, code, opts) if fmt == 'exe-servsice' return to_win32pe_dll(framework, code, opts) if fmt == 'dll' return to_winpe_only(framework, code, opts, ARCH_X86) if fmt == 'exe-only' return to_win32pe_old(framework, code, opts) if fmt == 'exe-small' end end class << self include ClassMethods end end