-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hmmm ... I do not have a WIND server to test with.  A few more questions:

1) Could you make sure your Apache server  LogLevel is set to debug ( in
addition to CASDebug On), and send the Apache logs.

2) Could you try the latest mod_auth_cas in trunk, just to make sure we
are not tracking a bug that has already been fixed?

3) Could you send the Apache config block containing AuthType CAS ?

4) Could someone explain the difference between WIND's protocol and the
CAS 1.0 protocol?

Thanks,
- -Matt

> Yes.  I am using wind authentication server which is very closely related 
> cas.  Thanks
> 
>  -----Original Message-----
> From:         Matt Smith [mailto:m...@forsetti.com]
> Sent: Friday, January 16, 2009 07:21 PM Eastern Standard Time
> To:   Yale CAS mailing list
> Subject:      Re: mod_auth_cas intermittent "authorization required error 
> message
> 
> I notice you've removed the service= parameter from the validation
> process.  Are you also using a customized CAS server?
> 
> On Fri, Jan 16, 2009 at 3:40 PM, Shadhin rahman <sr2...@columbia.edu> wrote:
>> Matt,
>>   I am running version 1.8.  Below is my patch.  Thanks for replying.
>>
>> --- dist/mod_auth_cas.c    2008-10-13 22:53:23.848685000 -0400
>> +++ mod_auth_cas.c    2008-10-13 16:22:47.304975000 -0400
>> @@ -474,7 +474,7 @@
>>  }
>>
>>  /*
>> - * Create the 'service=...' parameter
>> + * Create the 'destination=...' parameter
>>  * The reason this is not an apr_uri_t based on r->parsed_uri is that
>> Apache does not fill out several things
>>  * in the apr_uri_t structure...  unimportant things, like 'hostname',
>> and 'scheme', and 'port'...  so we must
>>  * implement a trimmed down version of apr_uri_unparse
>> @@ -530,7 +530,7 @@
>>         return;
>>     }
>>
>> -    destination = apr_pstrcat(r->pool, loginURL, "?service=", service,
>> renew, gateway, NULL);
>> +    destination = apr_pstrcat(r->pool, loginURL, "?destination=",
>> service, renew, gateway, NULL);
>>
>>     apr_table_add(r->headers_out, "Location", destination);
>>
>> @@ -553,7 +553,7 @@
>>     p = newArgs = apr_pcalloc(r->pool, strlen(oldArgs) + 1); /* add 1
>> for terminating NULL */
>>     while(*oldArgs != '\0') {
>>         /* stop copying when a CAS parameter is encountered */
>> -        if(strncmp(oldArgs, "ticket=", 7) == 0) {
>> +        if(strncmp(oldArgs, "ticketid=", 9) == 0) {
>>             copy = FALSE;
>>             changed = TRUE;
>>         }
>> @@ -602,10 +602,10 @@
>>     /* tokenize on & to find the 'ticket' parameter */
>>     ticket = apr_strtok(args, "&", &tokenizerCtx);
>>     do {
>> -        if(strncmp(ticket, "ticket=", 7) == 0) {
>> +        if(strncmp(ticket, "ticketid=", 9) == 0) {
>>             ticketFound = TRUE;
>>             /* skip to the meat of the parameter (the value after the
>> '=') */
>> -            ticket += 7;
>> +            ticket += 9;
>>             rv = apr_pstrdup(r->pool, ticket);
>>             break;
>>         }
>> @@ -1512,7 +1512,7 @@
>>      * at a later date when migrating to libcurl/some other HTTP
>> library to perform ticket validation.  It also removes the Connection:
>> close header as the default
>>      * behavior for HTTP/1.0 is Connection: close
>>      */
>> -    validateRequest = apr_psprintf(r->pool, "GET
>> %s?service=%s&ticket=%s%s HTTP/1.0\nHost: %s\n\n", getCASValidateURL(r,
>> c), getCASService(r, c), ticket, getCASRenew(r),
>> c->CASValidateURL.hostname);
>> +    validateRequest = apr_psprintf(r->pool, "GET %s?ticketid=%s
>> HTTP/1.0\nHost: %s\n\n", getCASValidateURL(r, c), ticket,
>> c->CASValidateURL.hostname);
>>     if(c->CASDebug)
>>         ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Validation
>> request: %s", validateRequest);
>>     /* send our validation request */
>>
>>
>> Matt Smith wrote:
>>> What version of mod_auth_cas are you using?  What does your patch look like?
>>>
>>> On Thu, Jan 15, 2009 at 3:51 PM, Shadhin rahman <sr2...@columbia.edu> wrote:
>>>
>>>> All,
>>>>  After doing some digging I see that our validate url is receiving two
>>>> requests with the same ticket.  Can anyone suggest what could be the cause
>>>> of it.  I want to draw the picture one more time.  Also I am adding two 
>>>> http
>>>> header files with http flow.  Thanks
>>>>
>>>>
>>>> http://mybox.edu/index.html ---redirect 
>>>> to------>https://mybox.edu/resource/
>>>>
>>>> mybox.edu/resource ---redirect to ------->
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> after authentication I get redirected to
>>>>
>>>>
>>>> https://mybox.edu/resource/?ticketid=8F15qYq51dP8pcFGZvK2653XzF4p4wDQ1lVRzHL
>>>>
>>>>
>>>>
>>>> Smith, Matthew J. wrote:
>>>>
> I notice you are using "ticketid" as your CAS ticket parameter, instead
> of the standard "ticket".  Have you made changes to m-a-c to support
> this other parameter?
> 
> Shadhin rahman wrote:
> 
> 
>>>>>>> All,
>>>>>>>    I am seeing some issues with mod_auth_cas, can you please provide 
>>>>>>> some
>>>>>>> direction to how I can resolve this.  I will explain the problem below.
>>>>>>>
>>>>>>> In apache, I have a redirect which takes me /resource/.
>>>>>>>
>>>>>>> Redirect /index.html https://mybox.edu/resource/
>>>>>>>
>>>>>>>
>>>>>>> once we get to /nagios/, we get redirected to the following wind login
>>>>>>> url
>>>>>>>
>>>>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>>>>
>>>>>>> after authentication is completed we get redirected back to
>>>>>>> https://mybox.edu/resource/?ticketid=8F15qYq51dP8pcFGZvK2653XzF4p4wDQ1lVRzHL
>>>>>>>
>>>>>>>
>>>>>>> At this point we will get "authorization required" error message.  If we
>>>>>>> take out the ticketid part from the above url and hit enter, the it 
>>>>>>> lets us
>>>>>>> in without any error message.  This happens only sometimes and not all 
>>>>>>> the
>>>>>>> time.  I can not narrow down the cause of it.  I am pasting http error
>>>>>>> message below.
>>>>>>>
>>>>>>>
>>>>>>> 128.59.30.251 - - [15/Jan/2009:10:46:26 -0500] "GET /resource/ HTTP/1.1"
>>>>>>> 302 355
>>>>>>> 128.59.30.251 - - [15/Jan/2009:10:46:32 -0500] "GET
>>>>>>> /resource/?ticketid=8F15qYq51dP8pcFGZvK2653XzF4p4wDQ1lVRzHL HTTP/1.1" 
>>>>>>> 401
>>>>>>> 480
>>>>>>>
>>>>>>> My cas settings are listed below.
>>>>>>>
>>>>>>> CASVersion   1
>>>>>>> CASDebug    On
>>>>>>> CASValidateServer Off
>>>>>>> CASLoginURL https://mybox.edu/login
>>>>>>> CASValidateURL https://mybox.edu/validate
>>>>>>> CASCookiePath /var/cas/
>>>>>>> CASCookieEntropy  32
>>>>>>> CASTimeout  7200
>>>>>>> CASIdleTimeout  3600
>>>>>>> CASCacheCleanInterval 1800
>>>>>>> CASCookieDomain mybox.edu
>>>>>>> CASCookieHttpOnly  Off
>>>>>>>
>>>>>>>
>>>>>>> In mod_auth_cas README file under " NEW FEATURES AND FUNCTIONS IN THIS
>>>>>>> RELEASE " they have mentioned that new release was suppose to address 
>>>>>>> this.
>>>>>>>
>>>>>>> https://www.ja-sig.org/svn/cas-clients/mod_auth_cas/trunk/README
>>>>>>>
>>>>>>> Please advise on this.  Thanks
>>>>>>>
>>>>>>>
>>>>>>>
_______________________________________________
Yale CAS mailing list
cas@tp.its.yale.edu
http://tp.its.yale.edu/mailman/listinfo/cas
>>>>>
>>>>>
>>>>>
>>>> --
>>>> Shadhin Rahman
>>>> 619 Watson Hall
>>>> Columbia University Information Technology-Network Infrastructure
>>>> Cell: 347-256-7869 Work: 212-851-7161
>>>> Email: sr2...@columbia.edu
>>>>
>>>>
>>>> http://mybox.edu/
>>>>
>>>> GET / HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 302 Found
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.3
>>>> Location: https://mybox.edu/resource/
>>>> Content-Length: 300
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/
>>>>
>>>> GET /resource/ HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 302 Found
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.3
>>>> Location:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>> Content-Length: 355
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> GET /login?destination=https%3a%2f%2fmybox.edu%2fresource%2f HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Pragma: no-cache
>>>> Cache-Control: no-store
>>>> Expires: Wed, 31 Dec 1969 23:59:59 GMT
>>>> Content-Length: 3419
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/styles/custyle.css
>>>>
>>>> GET /login_files/styles/custyle.css HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/css,*/*;q=0.1
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"5119-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 5119
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: text/css
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/styles/custyle-advanced.css
>>>>
>>>> GET /login_files/styles/custyle-advanced.css HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/css,*/*;q=0.1
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"961-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 961
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/css
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/columbiaseal.gif
>>>>
>>>> GET /login_files/columbiaseal.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"3458-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 3458
>>>> Keep-Alive: timeout=15, max=98
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> X-Pad: avoid browser bug
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/logo-temp.gif
>>>>
>>>> GET /login_files/logo-temp.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"1042-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 1042
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> X-Pad: avoid browser bug
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/uni-sign-on.gif
>>>>
>>>> GET /login_files/uni-sign-on.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:46 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"365-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 365
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/uni-password.gif
>>>>
>>>> GET /login_files/uni-password.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:47 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"613-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 613
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/favicon.ico
>>>>
>>>> GET /favicon.ico HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:47 GMT
>>>> Server: Apache/2.2.8
>>>> Last-Modified: Tue, 13 Jan 2009 19:42:17 GMT
>>>> Etag: "637-93e-460626bb61840"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 2366
>>>> Keep-Alive: timeout=15, max=97
>>>> Connection: Keep-Alive
>>>> Content-Type: image/x-icon
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login
>>>>
>>>> POST /login HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>> Content-Type: application/x-www-form-urlencoded
>>>> Content-Length: 128
>>>> destination=https%3A%2F%2Fmybox.edu%2Fresource%2F&service=cuit-resource&username=sr2690&password=dpib6991&log+in=Log+in
>>>> HTTP/1.x 302 Moved Temporarily
>>>> Date: Thu, 15 Jan 2009 20:25:54 GMT
>>>> Server: Apache/2.2.8
>>>> Pragma: no-cache
>>>> Cache-Control: no-store
>>>> Expires: Wed, 31 Dec 1969 23:59:59 GMT
>>>> Set-Cookie: WINDID=xcmWcvTMq6JGTKRNLmRGwNfzdg7KGc6Zc9DQhd5; Secure
>>>> Location:
>>>> https://mybox.edu/resource/?ticketid=G7QF78vkf2RwdRjZvQXBmNhzV58CMMVCBxn7MPC
>>>> Content-Length: 0
>>>> Keep-Alive: timeout=15, max=98
>>>> Connection: Keep-Alive
>>>> Content-Type: text/plain
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/?ticketid=G7QF78vkf2RwdRjZvQXBmNhzV58CMMVCBxn7MPC
>>>>
>>>> GET /resource/?ticketid=G7QF78vkf2RwdRjZvQXBmNhzV58CMMVCBxn7MPC HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 401 Authorization Required
>>>> Date: Thu, 15 Jan 2009 20:25:54 GMT
>>>> Server: Apache/2.2.3
>>>> Content-Length: 480
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/favicon.ico
>>>>
>>>> GET /favicon.ico HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:25:55 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Tue, 13 Jan 2009 19:13:31 GMT
>>>> Etag: "193cb8-93e-4606204d56cc0"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 2366
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: image/x-icon
>>>> ----------------------------------------------------------
>>>>
>>>> http://mybox.edu/
>>>>
>>>> GET / HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 302 Found
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.3
>>>> Location: https://mybox.edu/resource/
>>>> Content-Length: 300
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/
>>>>
>>>> GET /resource/ HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 302 Found
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.3
>>>> Location:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>> Content-Length: 355
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> GET /login?destination=https%3a%2f%2fmybox.edu%2fresource%2f HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Pragma: no-cache
>>>> Cache-Control: no-store
>>>> Expires: Wed, 31 Dec 1969 23:59:59 GMT
>>>> Content-Length: 3419
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/styles/custyle.css
>>>>
>>>> GET /login_files/styles/custyle.css HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/css,*/*;q=0.1
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"5119-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 5119
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: text/css
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/styles/custyle-advanced.css
>>>>
>>>> GET /login_files/styles/custyle-advanced.css HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/css,*/*;q=0.1
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"961-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 961
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: text/css
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/columbiaseal.gif
>>>>
>>>> GET /login_files/columbiaseal.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"3458-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 3458
>>>> Keep-Alive: timeout=15, max=98
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> X-Pad: avoid browser bug
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/logo-temp.gif
>>>>
>>>> GET /login_files/logo-temp.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"1042-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 1042
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> X-Pad: avoid browser bug
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/uni-sign-on.gif
>>>>
>>>> GET /login_files/uni-sign-on.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"365-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 365
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login_files/uni-password.gif
>>>>
>>>> GET /login_files/uni-password.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Etag: W/"613-1227309803000"
>>>> Last-Modified: Fri, 21 Nov 2008 23:23:23 GMT
>>>> Content-Length: 613
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/favicon.ico
>>>>
>>>> GET /favicon.ico HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:12 GMT
>>>> Server: Apache/2.2.8
>>>> Last-Modified: Tue, 13 Jan 2009 19:42:17 GMT
>>>> Etag: "637-93e-460626bb61840"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 2366
>>>> Keep-Alive: timeout=15, max=97
>>>> Connection: Keep-Alive
>>>> Content-Type: image/x-icon
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/login
>>>>
>>>> POST /login HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>> Content-Type: application/x-www-form-urlencoded
>>>> Content-Length: 128
>>>> destination=https%3A%2F%2Fmybox.edu%2Fresource%2F&service=cuit-resource&username=sr2690&password=dpib6991&log+in=Log+in
>>>> HTTP/1.x 302 Moved Temporarily
>>>> Date: Thu, 15 Jan 2009 20:24:18 GMT
>>>> Server: Apache/2.2.8
>>>> Pragma: no-cache
>>>> Cache-Control: no-store
>>>> Expires: Wed, 31 Dec 1969 23:59:59 GMT
>>>> Set-Cookie: WINDID=Tt1Db6qL5JBGMqSnjPTqvkX3v9b6dTWPHvDmqmx; Secure
>>>> Location:
>>>> https://mybox.edu/resource/?ticketid=YZkFBQbJ9mWgZVrksh4CbdjTBv8gT9k2xy54VV5
>>>> Content-Length: 0
>>>> Keep-Alive: timeout=15, max=98
>>>> Connection: Keep-Alive
>>>> Content-Type: text/plain
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/?ticketid=YZkFBQbJ9mWgZVrksh4CbdjTBv8gT9k2xy54VV5
>>>>
>>>> GET /resource/?ticketid=YZkFBQbJ9mWgZVrksh4CbdjTBv8gT9k2xy54VV5 HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>>
>>>> HTTP/1.x 302 Found
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Set-Cookie:
>>>> MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453;Secure;Path=/;Domain=mybox.edu
>>>> Location: https://mybox.edu/resource/
>>>> Content-Length: 301
>>>> Keep-Alive: timeout=15, max=99
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html; charset=iso-8859-1
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/
>>>>
>>>> GET /resource/ HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer:
>>>> https://mybox.edu/login?destination=https%3a%2f%2fmybox.edu%2fresource%2f
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:42 GMT
>>>> Etag: "ed7fc-2d6-45d2a8a96f080"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 726
>>>> Keep-Alive: timeout=15, max=98
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/images/favicon.ico
>>>>
>>>> GET /resource/images/favicon.ico HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:45 GMT
>>>> Etag: "ed7c6-336-45d2a8ac4b740"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 822
>>>> Keep-Alive: timeout=15, max=97
>>>> Connection: Keep-Alive
>>>> Content-Type: image/x-icon
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/side.html
>>>>
>>>> GET /resource/side.html HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:42 GMT
>>>> Etag: "ed803-34dc-45d2a8a96f080"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 13532
>>>> Keep-Alive: timeout=15, max=96
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/main.html
>>>>
>>>> GET /resource/main.html HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 07 Jan 2009 18:50:03 GMT
>>>> Etag: "edecc-643-45fe8fddcccc0"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 1603
>>>> Keep-Alive: timeout=15, max=95
>>>> Connection: Keep-Alive
>>>> Content-Type: text/html
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/images/orangedot.gif
>>>>
>>>> GET /resource/images/orangedot.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/side.html
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:44 GMT
>>>> Etag: "ed7db-145-45d2a8ab57500"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 325
>>>> Keep-Alive: timeout=15, max=94
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/images/greendot.gif
>>>>
>>>> GET /resource/images/greendot.gif HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/side.html
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:44 GMT
>>>> Etag: "ed7c9-149-45d2a8ab57500"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 329
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/gif
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/images/sblogo.jpg
>>>>
>>>> GET /resource/images/sblogo.jpg HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/side.html
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Wed, 03 Dec 2008 20:46:45 GMT
>>>> Etag: "ed7e2-13e5-45d2a8ac4b740"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 5093
>>>> Keep-Alive: timeout=15, max=93
>>>> Connection: Keep-Alive
>>>> Content-Type: image/jpeg
>>>> ----------------------------------------------------------
>>>> https://mybox.edu/resource/images/cuit_banner.jpg
>>>>
>>>> GET /resource/images/cuit_banner.jpg HTTP/1.1
>>>> Host: mybox.edu
>>>> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.2)
>>>> Gecko/2008092318 Fedora/3.0.2-1.fc9 Firefox/3.0.2
>>>> Accept: image/png,image/*;q=0.8,*/*;q=0.5
>>>> Accept-Language: en-us,en;q=0.5
>>>> Accept-Encoding: gzip,deflate
>>>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
>>>> Keep-Alive: 300
>>>> Connection: keep-alive
>>>> Referer: https://mybox.edu/resource/main.html
>>>> Cookie: MOD_AUTH_CAS_S=993639c22490dd7846c5989cfc9c3453
>>>>
>>>> HTTP/1.x 200 OK
>>>> Date: Thu, 15 Jan 2009 20:24:19 GMT
>>>> Server: Apache/2.2.3
>>>> Last-Modified: Tue, 21 Oct 2008 20:49:27 GMT
>>>> Etag: "ed7fe-27bb-459c9913f83c0"
>>>> Accept-Ranges: bytes
>>>> Content-Length: 10171
>>>> Keep-Alive: timeout=15, max=100
>>>> Connection: Keep-Alive
>>>> Content-Type: image/jpeg
>>>> ----------------------------------------------------------
>>>>
>>>> _______________________________________________
>>>> Yale CAS mailing list
>>>> cas@tp.its.yale.edu
>>>> http://tp.its.yale.edu/mailman/listinfo/cas
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>> --
>> Shadhin Rahman
>> 619 Watson Hall
>> Columbia University Information Technology-Network Infrastructure
>> Cell: 347-256-7869 Work: 212-851-7161
>> Email: sr2...@columbia.edu
>>
>> _______________________________________________
>> Yale CAS mailing list
>> cas@tp.its.yale.edu
>> http://tp.its.yale.edu/mailman/listinfo/cas
>>

- --
Matthew J. Smith
University of Connecticut ITS
matt.sm...@uconn.edu
PGP KeyID: 0xE9C5244E
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFJdI8UGP63pOnFJE4RAkZGAJ0YqJoFNgKdowUO3r8KBWA3HAr68gCeJ+z8
RB20GvhFSQJizXzQpTX0FNs=
=snOo
-----END PGP SIGNATURE-----
_______________________________________________
Yale CAS mailing list
cas@tp.its.yale.edu
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to