/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/post/linux/busybox/enum_connections.rb
55 строк
2 KB
adfoster-r7
Run rubocop on post modules
08 фев 2023, 16:47
Не верифицирован
08 фев 2023, 16:47
a81a71c
Код
Авторство
О чём код?
## # 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::BusyBox FILES = [ '/proc/net/nf_conntrack', '/proc/net/ip_conntrack', '/proc/net/tcp', '/proc/net/udp', '/proc/net/arp', '/proc/fcache/*' ] def initialize super( 'Name' => 'BusyBox Enumerate Connections', 'Description' => %q{ This module will be applied on a session connected to a BusyBox shell. It will enumerate the connections established with the router or device executing BusyBox. }, 'Author' => 'Javier Vicente Vallejo', 'License' => MSF_LICENSE, 'Platform' => ['linux'], 'SessionTypes' => ['shell'] ) end def run found = false print_status('Searching for files that store information about network connections') FILES.each do |f| next unless busy_box_file_exist?(f) found = true print_good("Connections file found: #{f}.") read_connection_file(f) end print_error('Any file with connections found') unless found end def read_connection_file(file) str_file = read_file(file) vprint_line(str_file) p = store_loot('busybox.enum.connections', 'text/plain', session, str_file, file, 'BusyBox Device Network Established Connections') print_good("Connections saved to #{p}") rescue EOFError print_error("Nothing read from file #{file}, file may be empty") end end