Hi,
In a webwork's action which is similar to Struts action, I tried to
redirect it to a page called "http://123.123.123.123". However, I want
to bypass the login page
(http://123.123.123.123/login.htm) by setting cookie of authorization
token, so that it will point directly to
http://123.123.123.123/main.htm. Here is what I did :
++++++++++++++++++++++++++++++++++++++++++++++++++++
public class OpenDeviceAction extend ....{
....
protected ActionResult doExecute() throws Exception {
Cookie theCookie = new Cookie('XXX', 'YYY');
theCookie.setPath("/");
theCookie.setDomain('123.123.123.123');
theCookie.setMaxAge(-1);
HttpServletResponse response =
ServletActionContext.getResponse();
response.addCookie(theCookie);
response.sendRedirect(response.encodeRedirectURL("http://" +
'123.123.123.123' + "/main.htm"));
return ActionResult.success;
}
}
++++++++++++++++++++++++++++++++++++++++++++++++++++++
Unfortunately, I still could not bypass a login page. The login page
still show up and require me to login eventhough I set the
authorization token in the action. I wonder if there is anything wrong
in the way I am doing or there is anything I am missing. Any advice is
greatly appreciated.
The following is the result from running httpheaders
++++++++++++++++++++++++++++++++++++++++++++++++++++
http://localhost:8080/zzzzzzzzzzzzzz/inventory/OpenDevice.a?reference...
GET
/zzzzzzzzzzzzzz/inventory/OpenDevice.a?reference.id=dc96c7aba73e4963bfcc06bfc87e0b74&reference.type=Legacy
HTTP/1.1
Host: localhost:8080
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://localhost:8080/zzzzzzzzzzzzzz/UserHome.a
Cookie: JSESSIONID=BFC66465A81E04CB290E3566FF141E17
HTTP/1.x 302 Moved Temporarily
Server: Apache-Coyote/1.1
X-Powered-By: Servlet 2.4; JBoss-4.0.3 (build: CVSTag=JBoss_4_0_3
date=200510042324)/Tomcat-5.5
Set-Cookie: XXX=YYY; Domain=123.123.123.123; Path=/
Location: http://123.123.123.123/main.htm
Content-Length: 0
Date: Sat, 26 Aug 2006 01:31:05 GMT
----------------------------------------------------------
http://123.123.123.123/main.htm
GET /main.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://localhost:8080/zzzzzzzzzzzzzz/UserHome.a
HTTP/1.x 302 Redirection
Server: httpd/1.00
Location: http://123.123.123.123/login.htm
Set-Cookie: XXX=; path=/
----------------------------------------------------------
http://123.123.123.123/login.htm
GET /login.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://localhost:8080/zzzzzzzzzzzzzz/UserHome.a
Cookie: XXX=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 2763
----------------------------------------------------------
http://123.123.123.123/libmd5.js
GET /libmd5.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 3238
----------------------------------------------------------
http://123.123.123.123/browser.js
GET /browser.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 2586
----------------------------------------------------------
http://123.123.123.123/images/banner/logps.gif
GET /images/banner/logps.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 12052
----------------------------------------------------------
http://123.123.123.123/images/banner/logps2.gif
GET /images/banner/logps2.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 2367
----------------------------------------------------------
http://123.123.123.123/images/blank.gif
GET /images/blank.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 62
----------------------------------------------------------
http://123.123.123.123/images/lginside.gif
GET /images/lginside.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 4144
----------------------------------------------------------
http://123.123.123.123/images/lginbtn.gif
GET /images/lginbtn.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 348
----------------------------------------------------------
http://123.123.123.123/favicon.ico
GET /favicon.ico HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 302 Redirection
Server: httpd/1.00
Location: http://123.123.123.123/login.htm
Set-Cookie: XXX=; path=/
----------------------------------------------------------
http://123.123.123.123/login.htm
GET /login.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 2762
----------------------------------------------------------
http://123.123.123.123/Login?LOGIN.CHALLENGE=b447c3a700e277abf11b0a3f...
GET
/Login?LOGIN.CHALLENGE=b447c3a700e277abf11b0a3f3d8f7e45&LOGIN.CHAPID=1&LOGIN.RESPONSE=4560f31a02719d123efe8b13534f6ef7&LOGIN.USERNAME=
HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 302 Redirection
Server: httpd/1.00
Location: http://123.123.123.123/main.htm
Set-Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c; path=/
----------------------------------------------------------
http://123.123.123.123/main.htm
GET /main.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/login.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 592
----------------------------------------------------------
http://123.123.123.123/status.htm
GET /status.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/main.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 620
----------------------------------------------------------
http://123.123.123.123/ps/banner.htm
GET /ps/banner.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/main.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 13682
----------------------------------------------------------
http://123.123.123.123/blank.htm
GET /blank.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/main.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 239
----------------------------------------------------------
http://123.123.123.123/images/c1.gif
GET /images/c1.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/status.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 41
----------------------------------------------------------
http://123.123.123.123/libhead.js
GET /libhead.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 726
----------------------------------------------------------
http://123.123.123.123/images/blank.gif
GET /images/blank.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/status.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 62
----------------------------------------------------------
http://123.123.123.123/btnmenu.css
GET /btnmenu.css HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
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: http://123.123.123.123/blank.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: text/css
Content-Encoding: gzip
Content-Length: 1306
----------------------------------------------------------
http://123.123.123.123/libbmen.js
GET /libbmen.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 2699
----------------------------------------------------------
http://123.123.123.123/libstr.js
GET /libstr.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 1237
----------------------------------------------------------
http://123.123.123.123/libbtn.js
GET /libbtn.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 1538
----------------------------------------------------------
http://123.123.123.123/libbanr.js
GET /libbanr.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 9627
----------------------------------------------------------
http://123.123.123.123/libnbar.js
GET /libnbar.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 2426
----------------------------------------------------------
http://123.123.123.123/libdynpg.js
GET /libdynpg.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 402
----------------------------------------------------------
http://123.123.123.123/images/banner/hdrps.gif
GET /images/banner/hdrps.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 8319
----------------------------------------------------------
http://123.123.123.123/images/banner/hdrps2.gif
GET /images/banner/hdrps2.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 2297
----------------------------------------------------------
http://123.123.123.123/images/banner/feedbckr.gif
GET /images/banner/feedbckr.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 537
----------------------------------------------------------
http://123.123.123.123/images/banner/reportb.gif
GET /images/banner/reportb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 578
----------------------------------------------------------
http://123.123.123.123/images/banner/toptenb.gif
GET /images/banner/toptenb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 591
----------------------------------------------------------
http://123.123.123.123/images/banner/toptenr.gif
GET /images/banner/toptenr.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 468
----------------------------------------------------------
http://123.123.123.123/images/banner/toptent.gif
GET /images/banner/toptent.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 600
----------------------------------------------------------
http://123.123.123.123/info.htm
GET /info.htm HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 3686
----------------------------------------------------------
http://123.123.123.123/images/banner/monitorr.gif
GET /images/banner/monitorr.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 533
----------------------------------------------------------
http://123.123.123.123/images/banner/monitorb.gif
GET /images/banner/monitorb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 596
----------------------------------------------------------
http://123.123.123.123/btnmenu.css
GET /btnmenu.css HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: text/css
Content-Encoding: gzip
Content-Length: 1306
----------------------------------------------------------
http://123.123.123.123/images/banner/manageb.gif
GET /images/banner/manageb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 600
----------------------------------------------------------
http://123.123.123.123/images/banner/monitort.gif
GET /images/banner/monitort.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 601
----------------------------------------------------------
http://123.123.123.123/libhead.js
GET /libhead.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 726
----------------------------------------------------------
http://123.123.123.123/images/banner/managet.gif
GET /images/banner/managet.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 618
----------------------------------------------------------
http://123.123.123.123/images/banner/manager.gif
GET /images/banner/manager.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 497
----------------------------------------------------------
http://123.123.123.123/libbmen.js
GET /libbmen.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 2699
----------------------------------------------------------
http://123.123.123.123/images/banner/reportt.gif
GET /images/banner/reportt.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 580
----------------------------------------------------------
http://123.123.123.123/images/banner/reportr.gif
GET /images/banner/reportr.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 454
----------------------------------------------------------
http://123.123.123.123/libstr.js
GET /libstr.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 1237
----------------------------------------------------------
http://123.123.123.123/images/banner/setupr.gif
GET /images/banner/setupr.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 459
----------------------------------------------------------
http://123.123.123.123/images/banner/setupb.gif
GET /images/banner/setupb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 576
----------------------------------------------------------
http://123.123.123.123/images/banner/setupt.gif
GET /images/banner/setupt.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 586
----------------------------------------------------------
http://123.123.123.123/libbtn.js
GET /libbtn.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 1538
----------------------------------------------------------
http://123.123.123.123/images/banner/infob.gif
GET /images/banner/infob.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 526
----------------------------------------------------------
http://123.123.123.123/images/banner/endshad.gif
GET /images/banner/endshad.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 124
----------------------------------------------------------
http://123.123.123.123/images/banner/infor.gif
GET /images/banner/infor.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 411
----------------------------------------------------------
http://123.123.123.123/libbrws.js
GET /libbrws.js HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: */*
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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Set-Cookie:
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PATH=/
Cache-Control: no-cache
Expires: 0
Content-Type: application/x-javascript
Content-Encoding: gzip
Content-Length: 714
----------------------------------------------------------
http://123.123.123.123/images/banner/feedbckb.gif
GET /images/banner/feedbckb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 650
----------------------------------------------------------
http://123.123.123.123/images/banner/infot.gif
GET /images/banner/infot.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 535
----------------------------------------------------------
http://123.123.123.123/images/banner/pguider.gif
GET /images/banner/pguider.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 607
----------------------------------------------------------
http://123.123.123.123/images/banner/pguideb.gif
GET /images/banner/pguideb.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 718
----------------------------------------------------------
http://123.123.123.123/images/help2.gif
GET /images/help2.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 1667
----------------------------------------------------------
http://123.123.123.123/images/help.gif
GET /images/help.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 1542
----------------------------------------------------------
http://123.123.123.123/images/barrt.gif
GET /images/barrt.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 1122
----------------------------------------------------------
http://123.123.123.123/images/barlf.gif
GET /images/barlf.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 1124
----------------------------------------------------------
http://123.123.123.123/images/blank.gif
GET /images/blank.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/ps/banner.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 62
----------------------------------------------------------
http://123.123.123.123/images/warnsm.gif
GET /images/warnsm.gif HTTP/1.1
Host: 123.123.123.123
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6)
Gecko/20060728 Firefox/1.5.0.6
Accept: image/png,*/*;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: http://123.123.123.123/info.htm
Cookie: XXX=4560f31a02719d123efe8b13534f6ef70120b6603c;
PScfgstr=ZHNiV0Q6IG91PS9kZWZhdWx0LG91PXBzY2ZnLG89aXFvcwoA003892; PScd=
HTTP/1.x 200 OK
Server: httpd/1.00
Content-Type: image/gif
Content-Length: 125
----------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++
tungchau81@yahoo.com - 28 Aug 2006 18:24 GMT
I did some experiment and found out that whenever I am inside domain01
and I set cookies for domain02, the cookies never get stored to my hard
disk. They only get stored if I don't setDomain for my cookies.
Is there any work-around to set cookies for domain02 before hand and
redirect domain01 to domain02 to by pass login page in domain02.
Any help is greatly appreciated. I have been stuck on this problem for
many days.
Tung Chau
> Hi,
> In a webwork's action which is similar to Struts action, I tried to
[quoted text clipped - 1617 lines]
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++
tungchau81@yahoo.com - 28 Aug 2006 21:21 GMT
In other word, m company has 2 web servers, in 2 different
domains. I wish to set a cookie, via a web page, in domain1 and a page
in domain2 wishes to read it. If it is not a legal operation according
to cookie security model, then I wonder if there is any workaround?
Tung Chau
> I did some experiment and found out that whenever I am inside domain01
> and I set cookies for domain02, the cookies never get stored to my hard
[quoted text clipped - 1628 lines]
> >
> > ++++++++++++++++++++++++++++++++++++++++++++++++++++
Andrew Thompson - 29 Aug 2006 00:48 GMT
> In other word, m company has 2 web servers, in 2 different
> domains. I wish to set a cookie, via a web page, in domain1 and a page
> in domain2 wishes to read it. If it is not a legal operation according
> to cookie security model, then I wonder if there is any workaround?
If there is a 'work-around' to a 'security model', it is known as a
'security hole', and will soon be fixed.
And while I'm here, please refrain from top-posting, and please
trim your replies - there was no need to repeat the scores of
lines you quoted in your replies.
Andrew T.