Module: Msf::Exploit::Remote::HTTP::Splunk::Version
- Included in:
- Msf::Exploit::Remote::HTTP::Splunk
- Defined in:
- lib/msf/core/exploit/remote/http/splunk/version.rb
Overview
Module to get version of splunk app
Instance Method Summary collapse
-
#splunk_version(cookie_string = nil) ⇒ String?
Extracts the Splunk version information using authenticated cookie if available.
Instance Method Details
#splunk_version(cookie_string = nil) ⇒ String?
Extracts the Splunk version information using authenticated cookie if available
9 10 11 12 13 14 15 16 17 |
# File 'lib/msf/core/exploit/remote/http/splunk/version.rb', line 9 def splunk_version( = nil) version = splunk_version_authenticated() if !.nil? return version if version version = splunk_login_version return version if version nil end |