Forum Discussion
Kevin_50491
Nimbostratus
Mar 04, 2013Removal of specific cookie
I am looking for a method in which I could delete a designated cookie that has a specific name AND path. Normally deleting a cookie isn't an issue, but I am looking at a situation where I can have 2...
nitass
Employee
Mar 05, 2013e.g.
[root@ve10:Active] config b virtual bar list
virtual bar {
snat automap
pool foo
destination 172.28.19.252:80
ip protocol 6
rules myrule
profiles {
http {}
tcp {}
}
}
[root@ve10:Active] config b pool foo list
pool foo {
members 200.200.200.101:80 {}
}
[root@ve10:Active] config b rule myrule list
rule myrule {
when HTTP_RESPONSE {
set ck_list [HTTP::header values "Set-Cookie"]
HTTP::header remove "Set-Cookie"
foreach ck $ck_list {
if { not ($ck contains "Path=/DefinitelyAPath") } {
HTTP::header insert "Set-Cookie" $ck
}
}
}
}
accessing pool member directly
[root@ve10:Active] config curl -I http://200.200.200.101
HTTP/1.1 200 OK
Date: Tue, 05 Mar 2013 12:05:38 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Sat, 27 Oct 2012 03:22:35 GMT
ETag: "4183f3-59-f28f94c0"
Accept-Ranges: bytes
Content-Length: 89
Set-Cookie: abc1=testcookievalue1; Path=/
Set-Cookie: abc1=testcookievalue2; Path=/DefinitelyAPath/; HttpOnly
Set-Cookie: abc1=testcookievalue3; Path=/; HttpOnly
Content-Type: text/html; charset=UTF-8
accessing through virtual server (irule)
[root@ve10:Active] config curl -I http://172.28.19.252
HTTP/1.1 200 OK
Date: Tue, 05 Mar 2013 12:05:44 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Sat, 27 Oct 2012 03:22:35 GMT
ETag: "4183f3-59-f28f94c0"
Accept-Ranges: bytes
Content-Length: 89
Content-Type: text/html; charset=UTF-8
Set-Cookie: abc1=testcookievalue1; Path=/
Set-Cookie: abc1=testcookievalue3; Path=/; HttpOnly
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
