Class: Metasploit::Framework::LoginScanner::Postgres
- Inherits:
-
Object
- Object
- Metasploit::Framework::LoginScanner::Postgres
- Includes:
- Base
- Defined in:
- lib/metasploit/framework/login_scanner/postgres.rb
Overview
This is the LoginScanner class for dealing with PostgreSQL database servers. It is responsible for taking a single target, and a list of credentials and attempting them. It then saves the results.
Constant Summary collapse
- DEFAULT_PORT =
5432
- DEFAULT_REALM =
'template1'
- LIKELY_PORTS =
[ DEFAULT_PORT ]
- LIKELY_SERVICE_NAMES =
[ 'postgres' ]
- PRIVATE_TYPES =
[ :password ]
- REALM_KEY =
Metasploit::Model::Realm::Key::POSTGRESQL_DATABASE
Instance Method Summary collapse
-
#attempt_login(credential) ⇒ Metasploit::Framework::LoginScanner::Result
This method attempts a single login with a single credential against the target.
Instance Method Details
#attempt_login(credential) ⇒ Metasploit::Framework::LoginScanner::Result
This method attempts a single login with a single credential against the target
24 25 26 27 28 29 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 |
# File 'lib/metasploit/framework/login_scanner/postgres.rb', line 24 def attempt_login(credential) = { credential: credential, host: host, port: port, protocol: 'tcp', service_name: 'postgres' } db_name = credential.realm || 'template1' if ::Rex::Socket.is_ipv6?(host) uri = "tcp://[#{host}]:#{port}" else uri = "tcp://#{host}:#{port}" end pg_conn = nil begin pg_conn = Msf::Db::PostgresPR::Connection.new(db_name,credential.public,credential.private,uri) rescue RuntimeError => e case e.to_s.split("\t")[1] when "C3D000" .merge!({ status: Metasploit::Model::Login::Status::INCORRECT, proof: "C3D000, Creds were good but database was bad" }) when "C28000", "C28P01" .merge!({ status: Metasploit::Model::Login::Status::INCORRECT, proof: "Invalid username or password" }) else .merge!({ status: Metasploit::Model::Login::Status::INCORRECT, proof: e. }) end rescue Rex::ConnectionError, Rex::ConnectionProxyError, Errno::ECONNRESET, Errno::EINTR, Errno::ENOTCONN, Rex::TimeoutError, EOFError, Timeout::Error => e .merge!(status: Metasploit::Model::Login::Status::UNABLE_TO_CONNECT, proof: e) rescue Msf::Db::PostgresPR::AuthenticationMethodMismatch => e .merge!({ status: Metasploit::Model::Login::Status::INCORRECT, proof: e. }) end if pg_conn pg_conn.close [:status] = Metasploit::Model::Login::Status::SUCCESSFUL else [:status] = Metasploit::Model::Login::Status::INCORRECT end ::Metasploit::Framework::LoginScanner::Result.new() end |