Re: BUG: Apache::Cookie v1.0

2002-09-23 Thread darren chamberlain
* Michael McLagan [EMAIL PROTECTED] [2002-09-21 11:45]: There is a bug in Apache::Cookie. It doesn't handle a cookie with zero bytes in it! This is because Apache::Cookie is implemented in C, and C uses NULL as the end of string terminator. This is probably something that needs to be done in

BUG: Apache::Cookie v1.0

2002-09-21 Thread Michael McLagan
Hello, There is a bug in Apache::Cookie. It doesn't handle a cookie with zero bytes in it! $value = ABCD . chr(0) . EFGH; $cookie = Apache::Cookie-new($request, -name= 'oatmeal', -value= $value, -domain=$ENV{'SERVER_NAME'}, -path=/); print $cookie-as_string; The output looks like:

Re: BUG: Apache::Cookie v1.0

2002-09-21 Thread Michael McLagan
Once upon a time, I wrote: There is a bug in Apache::Cookie. It doesn't handle a cookie with zero bytes in it! A clarification, it's not a zero length cookie that is mishandled, it's a cookie with an embedded NUL (zero) character. Michael