|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-09 19:06 UTC] pajoye@php.net
[2010-02-10 00:12 UTC] lokitek at gmail dot com
[2010-02-10 00:16 UTC] pajoye@php.net
[2010-02-10 16:06 UTC] lokitek at gmail dot com
[2010-02-10 16:24 UTC] pajoye@php.net
[2010-02-10 20:26 UTC] lokitek at gmail dot com
[2010-02-20 01:00 UTC] php-bugs at lists dot php dot net
[2010-04-25 20:06 UTC] felipe@php.net
-Status: No Feedback
+Status: Feedback
[2010-04-25 20:06 UTC] felipe@php.net
[2010-11-01 11:54 UTC] paul at fubra dot com
[2010-11-07 21:25 UTC] felipe@php.net
[2011-09-12 15:56 UTC] jeremy at thomersonfamily dot com
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
[2013-04-16 09:27 UTC] rakesh at vivaconnect dot co
[2015-08-29 13:56 UTC] cmb@php.net
-Status: No Feedback
+Status: Wont fix
-Assigned To:
+Assigned To: cmb
[2015-08-29 13:56 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 03:00:01 2025 UTC |
Description: ------------ While using the imap_headerinfo() function to obtain information about emails that I check via IMAP, I noticed that PHP complained about imap_headerinfo() Address buffer overflow. A bit of investigation revealed that a spam message containing 500+ CC email addresses caused this issue. Reproduce code: --------------- // Send an email with 500+ CCd users. then use imap_headerinfo() to // obtain all header information. // [from doc] $mBox = imap_open("{host:143/imap/novalidate-cert}INBOX}", $username, $password); // open as imap $header = imap_header($mBox, 1); // get first mails header // imap_headerinfo() will crash with the following error: // PHP Fatal error: imap_headerinfo(): Address buffer overflow Expected result: ---------------- I expect to information about the given message number by reading its headers and returned in an object format Actual result: -------------- PHP Fatal error: imap_headerinfo(): Address buffer overflow