Module: Msf::Post::Linux::System
- Includes:
- Auxiliary::Report, Common, File, Unix
- Defined in:
- lib/msf/core/post/linux/system.rb
Instance Method Summary collapse
-
#get_container_type ⇒ String
Determine if system is a container.
-
#get_cpu_info ⇒ Hash
Gets basic information about the system’s CPU.
-
#get_hostname ⇒ String
Gets the hostname of the system.
-
#get_mount_path(filepath) ⇒ String
Gets the mount point of ‘filepath`.
-
#get_path ⇒ String
Gets the $PATH environment variable.
-
#get_shell_name ⇒ String
Gets the name of the current shell.
-
#get_shell_pid ⇒ String
Gets the pid of the current shell.
-
#get_suid_files(findpath = '/') ⇒ Array
Gathers all SUID files on the filesystem.
-
#get_sysinfo ⇒ Object
Returns a Hash containing Distribution Name, Version and Kernel Information.
-
#glibc_version ⇒ String
Gets the version of glibc.
-
#has_clang? ⇒ Boolean
Checks if the system has clang installed.
-
#has_gcc? ⇒ Boolean
Checks if the system has gcc installed.
- #initialize(info = {}) ⇒ Object
-
#interfaces ⇒ Array
Gets all the interfaces of the device.
-
#ips ⇒ Array
Gets all the IP directions of the device.
-
#listen_tcp_ports ⇒ Array
Parsing information based on: github.com/sensu-plugins/sensu-plugins-network-checks/blob/master/bin/check-netstat-tcp.rb Gets all the listening tcp ports in the device.
-
#listen_udp_ports ⇒ Array
Parsing information based on: github.com/sensu-plugins/sensu-plugins-network-checks/blob/master/bin/check-netstat-tcp.rb Gets all the listening udp ports in the device.
-
#macs ⇒ Array
Gets all the macs of the device.
-
#noexec?(file_path) ⇒ Boolean
Checks if ‘file_path` is mounted on a noexec mount point.
-
#nosuid?(file_path) ⇒ Boolean
Checks if ‘file_path` is mounted on a nosuid mount point.
-
#protected_hardlinks? ⇒ Boolean
Checks for protected hardlinks on the system.
-
#protected_symlinks? ⇒ Boolean
Checks for protected symlinks on the system.
Methods included from Auxiliary::Report
#active_db?, #create_cracked_credential, #create_credential, #create_credential_and_login, #create_credential_login, #db, #db_warning_given?, #get_client, #get_host, #inside_workspace_boundary?, #invalidate_login, #mytask, #myworkspace, #myworkspace_id, #report_auth_info, #report_client, #report_exploit, #report_host, #report_loot, #report_note, #report_service, #report_vuln, #report_web_form, #report_web_page, #report_web_site, #report_web_vuln, #store_cred, #store_local, #store_loot
Methods included from Metasploit::Framework::Require
optionally, optionally_active_record_railtie, optionally_include_metasploit_credential_creation, #optionally_include_metasploit_credential_creation, optionally_require_metasploit_db_gem_engines
Methods included from Unix
#enum_user_directories, #get_groups, #get_session_pid, #get_users, #is_root?, #whoami
Methods included from File
#_append_file_powershell, #_append_file_unix_shell, #_can_echo?, #_read_file_meterpreter, #_read_file_powershell, #_read_file_powershell_fragment, #_shell_command_with_success_code, #_shell_process_with_success_code, #_unix_max_line_length, #_win_ansi_append_file, #_win_ansi_write_file, #_win_bin_append_file, #_win_bin_write_file, #_write_file_meterpreter, #_write_file_powershell, #_write_file_powershell_fragment, #_write_file_unix_shell, #append_file, #attributes, #cd, #chmod, #copy_file, #dir, #directory?, #executable?, #exist?, #expand_path, #exploit_data, #exploit_source, #file?, #file_local_write, #file_remote_digestmd5, #file_remote_digestsha1, #file_remote_digestsha2, #immutable?, #mkdir, #pwd, #read_file, #readable?, #rename_file, #rm_f, #rm_rf, #setuid?, #stat, #upload_and_chmodx, #upload_file, #writable?, #write_file
Methods included from Common
#clear_screen, #cmd_exec, #cmd_exec_get_pid, #cmd_exec_with_result, #command_exists?, #create_process, #get_env, #get_envs, #peer, #report_virtualization, #rhost, #rport
Instance Method Details
#get_container_type ⇒ String
Determine if system is a container
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'lib/msf/core/post/linux/system.rb', line 486 def get_container_type # Checking file paths for solution container_type = if file?('/.dockerenv') || file?('/.dockerinit') 'Docker' elsif file?('/run/.containerenv') 'Podman' elsif directory?('/dev/lxc') 'LXC' elsif file?('/proc/sys/kernel/osrelease') && read_file('/proc/sys/kernel/osrelease').grep(/WSL|Microsoft/i).any? # Check for WSL, as suggested in https://github.com/Microsoft/WSL/issues/423#issuecomment-221627364 'WSL' elsif (cgroup = read_file('/proc/1/cgroup')) # Check cgroup on PID 1 case cgroup.tr("\n", ' ') when /docker/i return 'Docker' when /lxc/i return 'LXC' else return 'Unknown' end else # Check for the "container" environment variable case get_env('container') when 'lxc' return 'LXC' when 'systemd-nspawn' return 'systemd nspawn' when 'podman' return 'Podman' else 'Unknown' end end unless container_type == 'Unknown' report_host({ host: rhost, virtual_host: container_type }) end container_type end |
#get_cpu_info ⇒ Hash
Gets basic information about the system’s CPU.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/msf/core/post/linux/system.rb', line 209 def get_cpu_info info = {} orig = read_file('/proc/cpuinfo').to_s cpuinfo = orig.split("\n\n")[0] # This is probably a more platform independent way to parse the results (compared to splitting and assigning preset indices to values) cpuinfo.split("\n").each do |l| info[:speed_mhz] = l.split(': ')[1].to_i if l.include? 'cpu MHz' info[:product] = l.split(': ')[1] if l.include? 'model name' info[:vendor] = l.split(': ')[1] if l.include? 'vendor_id' end info[:cores] = orig.split("\n\n").size info rescue StandardError raise 'Could not get CPU information' end |
#get_hostname ⇒ String
Gets the hostname of the system
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/msf/core/post/linux/system.rb', line 230 def get_hostname hostname = nil if session.type == 'meterpreter' hostname = session.sys.config.sysinfo['Computer'].to_s end if hostname.blank? && command_exists?('uname') hostname = cmd_exec('uname -n').to_s.chomp end if hostname.blank? hostname = read_file("/proc/sys/kernel/hostname").to_s.chomp end raise if hostname.blank? report_host({ host: rhost, name: hostname }) hostname rescue StandardError raise 'Unable to retrieve hostname' end |
#get_mount_path(filepath) ⇒ String
Gets the mount point of ‘filepath`
374 375 376 377 378 |
# File 'lib/msf/core/post/linux/system.rb', line 374 def get_mount_path(filepath) cmd_exec("df \"#{filepath}\" | tail -1").split(' ')[5] rescue StandardError raise "Unable to get mount path of #{filepath}" end |
#get_path ⇒ String
Gets the $PATH environment variable
198 199 200 201 202 |
# File 'lib/msf/core/post/linux/system.rb', line 198 def get_path cmd_exec('echo $PATH').to_s rescue StandardError raise 'Unable to determine path' end |
#get_shell_name ⇒ String
Gets the name of the current shell
258 259 260 261 262 263 264 265 266 |
# File 'lib/msf/core/post/linux/system.rb', line 258 def get_shell_name if command_exists?('ps') cmd_exec('ps -p $$').to_s.split("\n").last.split(' ')[3] else cmd_exec('echo $0').split('-')[1] end rescue StandardError raise 'Unable to gather shell name' end |
#get_shell_pid ⇒ String
Gets the pid of the current shell
273 274 275 |
# File 'lib/msf/core/post/linux/system.rb', line 273 def get_shell_pid cmd_exec('echo $$').to_s end |
#get_suid_files(findpath = '/') ⇒ Array
Gathers all SUID files on the filesystem. NOTE: This uses the Linux ‘find` command. It will most likely take a while to get all files. Consider specifying a more narrow find path.
187 188 189 190 191 |
# File 'lib/msf/core/post/linux/system.rb', line 187 def get_suid_files(findpath = '/') cmd_exec("find #{findpath} -perm -4000 -print -xdev").to_s.split("\n").delete_if { |i| i.include? 'Permission denied' } rescue StandardError raise 'Could not retrieve all SUID files' end |
#get_sysinfo ⇒ Object
Returns a Hash containing Distribution Name, Version and Kernel Information
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/msf/core/post/linux/system.rb', line 30 def get_sysinfo system_data = {} etc_files = cmd_exec('ls /etc').split kernel_version = cmd_exec('uname -a') system_data[:kernel] = kernel_version # The order of these checks is important. # * Checks for Arch-based distros must be performed before the check for Arch. # * Checks for Antix-based distros must be performed before the check for Antix. # * Checks for Debian-based distros must be performed before the check for Debian. # * Checks for distros which ship with '/etc/system-release' must be performed # prior to the 'system-release' check. # * Checks for distros which ship with '/etc/issue' must be performed # prior to the Generic 'issue' check. # MX Linux if etc_files.include?('mx-version') version = read_file('/etc/mx-version').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'mxlinux' system_data[:version] = version # AntiX elsif etc_files.include?('antix-version') version = read_file('/etc/antix-version').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'antix' system_data[:version] = version # OpenMandriva elsif etc_files.include?('openmandriva-release') version = read_file('/etc/openmandriva-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'openmandriva' system_data[:version] = version # Debian / Ubuntu (and forks) elsif etc_files.include?('debian_version') version = read_file('/etc/issue').gsub(/\n|\\n|\\l/, '').strip if kernel_version =~ /Ubuntu/ system_data[:distro] = 'ubuntu' else system_data[:distro] = 'debian' end system_data[:version] = version # Amazon / CentOS elsif etc_files.include?('system-release') version = read_file('/etc/system-release').gsub(/\n|\\n|\\l/, '').strip if version.include? 'CentOS' system_data[:distro] = 'centos' elsif version.include? 'Fedora' system_data[:distro] = 'fedora' else system_data[:distro] = 'amazon' end system_data[:version] = version # Alpine elsif etc_files.include?('alpine-release') version = read_file('/etc/alpine-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'alpine' system_data[:version] = version # Fedora elsif etc_files.include?('fedora-release') version = read_file('/etc/fedora-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'fedora' system_data[:version] = version # Oracle Linux elsif etc_files.include?('enterprise-release') version = read_file('/etc/enterprise-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'oracle' system_data[:version] = version # RedHat elsif etc_files.include?('redhat-release') version = read_file('/etc/redhat-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'redhat' system_data[:version] = version # Manjaro elsif etc_files.include?('manjaro-release') version = read_file('/etc/manjaro-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'manjaro' system_data[:version] = version # Arch elsif etc_files.include?('arch-release') version = read_file('/etc/arch-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'arch' system_data[:version] = version # Slackware elsif etc_files.include?('slackware-version') version = read_file('/etc/slackware-version').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'slackware' system_data[:version] = version # Mandrake elsif etc_files.include?('mandrake-release') version = read_file('/etc/mandrake-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'mandrake' system_data[:version] = version # SuSE elsif etc_files.include?('SuSE-release') version = read_file('/etc/SuSE-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'suse' system_data[:version] = version # OpenSUSE elsif etc_files.include?('SUSE-brand') version = read_file('/etc/SUSE-brand').scan(/^VERSION\s*=\s*([\d.]+)/).flatten.first system_data[:distro] = 'suse' system_data[:version] = version # Gentoo elsif etc_files.include?('gentoo-release') version = read_file('/etc/gentoo-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'gentoo' system_data[:version] = version # Openwall elsif etc_files.include?('owl-release') version = read_file('/etc/owl-release').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'openwall' system_data[:version] = version # Generic elsif etc_files.include?('issue') version = read_file('/etc/issue').gsub(/\n|\\n|\\l/, '').strip system_data[:distro] = 'linux' system_data[:version] = version # Others, could be a mismatch like ssh_login to cisco device else system_data[:distro] = 'linux' system_data[:version] = '' end report_host({ host: rhost, os_name: system_data[:distro], os_flavor: system_data[:version] }) system_data end |
#glibc_version ⇒ String
Gets the version of glibc
358 359 360 361 362 363 364 365 366 |
# File 'lib/msf/core/post/linux/system.rb', line 358 def glibc_version raise 'glibc is not installed' unless command_exists? 'ldd' begin cmd_exec('ldd --version').scan(/^ldd\s+\(.*\)\s+([\d.]+)/).flatten.first rescue StandardError raise 'Could not determine glibc version' end end |
#has_clang? ⇒ Boolean
Checks if the system has clang installed
293 294 295 296 297 |
# File 'lib/msf/core/post/linux/system.rb', line 293 def has_clang? command_exists? 'clang' rescue StandardError raise 'Unable to check for clang' end |
#has_gcc? ⇒ Boolean
Checks if the system has gcc installed
282 283 284 285 286 |
# File 'lib/msf/core/post/linux/system.rb', line 282 def has_gcc? command_exists? 'gcc' rescue StandardError raise 'Unable to check for gcc' end |
#initialize(info = {}) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/msf/core/post/linux/system.rb', line 12 def initialize(info = {}) super( update_info( info, 'Compat' => { 'Meterpreter' => { 'Commands' => %w[ stdapi_sys_config_sysinfo ] } } ) ) end |
#interfaces ⇒ Array
Gets all the interfaces of the device
406 407 408 409 410 411 412 413 414 415 |
# File 'lib/msf/core/post/linux/system.rb', line 406 def interfaces result = [] data = cmd_exec('for fn in /sys/class/net/*; do echo $fn; done') parts = data.split("\n") parts.each do |line| line = line.split('/')[-1] result.insert(-1, line) end result end |
#ips ⇒ Array
Gets all the IP directions of the device
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/msf/core/post/linux/system.rb', line 385 def ips lines = read_file('/proc/net/fib_trie') result = [] previous_line = '' lines.each_line do |line| if line.include?('/32 host LOCAL') previous_line = previous_line.split('-- ')[1].strip unless result.include? previous_line result.insert(-1, previous_line) end end previous_line = line end result end |
#listen_tcp_ports ⇒ Array
Parsing information based on: github.com/sensu-plugins/sensu-plugins-network-checks/blob/master/bin/check-netstat-tcp.rb Gets all the listening tcp ports in the device
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
# File 'lib/msf/core/post/linux/system.rb', line 442 def listen_tcp_ports ports = [] content = read_file('/proc/net/tcp') content.each_line do |line| next unless (m = line.match(/^\s*\d+:\s+(.{8}|.{32}):(.{4})\s+(.{8}|.{32}):(.{4})\s+(.{2})/)) connection_state = m[5].to_s next unless connection_state == '0A' connection_port = m[2].to_i(16) unless ports.include?(connection_port) ports.insert(-1, connection_port) end end ports end |
#listen_udp_ports ⇒ Array
Parsing information based on: github.com/sensu-plugins/sensu-plugins-network-checks/blob/master/bin/check-netstat-tcp.rb Gets all the listening udp ports in the device
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'lib/msf/core/post/linux/system.rb', line 464 def listen_udp_ports ports = [] content = read_file('/proc/net/udp') content.each_line do |line| next unless (m = line.match(/^\s*\d+:\s+(.{8}|.{32}):(.{4})\s+(.{8}|.{32}):(.{4})\s+(.{2})/)) connection_state = m[5].to_s next unless connection_state == '07' connection_port = m[2].to_i(16) if ports.include?(connection_port) == false ports.insert(-1, connection_port) end end return ports end |
#macs ⇒ Array
Gets all the macs of the device
422 423 424 425 426 427 428 429 430 431 432 433 434 |
# File 'lib/msf/core/post/linux/system.rb', line 422 def macs result = [] str_macs = cmd_exec('for fn in /sys/class/net/*; do echo $fn; done') parts = str_macs.split("\n") parts.each do |line| rut = line + '/address' mac_array = read_file(rut) mac_array.each_line do |mac| result.insert(-1, mac.strip) end end result end |
#noexec?(file_path) ⇒ Boolean
Checks if ‘file_path` is mounted on a noexec mount point
304 305 306 307 308 309 310 311 312 313 |
# File 'lib/msf/core/post/linux/system.rb', line 304 def noexec?(file_path) mount = read_file('/proc/mounts').to_s mount_path = get_mount_path(file_path) mount.lines.each do |l| return true if l =~ Regexp.new("#{mount_path} (.*)noexec(.*)") end false rescue StandardError raise 'Unable to check for noexec volume' end |
#nosuid?(file_path) ⇒ Boolean
Checks if ‘file_path` is mounted on a nosuid mount point
320 321 322 323 324 325 326 327 328 329 |
# File 'lib/msf/core/post/linux/system.rb', line 320 def nosuid?(file_path) mount = read_file('/proc/mounts').to_s mount_path = get_mount_path(file_path) mount.lines.each do |l| return true if l =~ Regexp.new("#{mount_path} (.*)nosuid(.*)") end false rescue StandardError raise 'Unable to check for nosuid volume' end |
#protected_hardlinks? ⇒ Boolean
Checks for protected hardlinks on the system
336 337 338 339 340 |
# File 'lib/msf/core/post/linux/system.rb', line 336 def protected_hardlinks? read_file('/proc/sys/fs/protected_hardlinks').to_s.strip.eql? '1' rescue StandardError raise 'Could not determine protected_hardlinks status' end |
#protected_symlinks? ⇒ Boolean
Checks for protected symlinks on the system
347 348 349 350 351 |
# File 'lib/msf/core/post/linux/system.rb', line 347 def protected_symlinks? read_file('/proc/sys/fs/protected_symlinks').to_s.strip.eql? '1' rescue StandardError raise 'Could not determine protected_symlinks status' end |