Questions tagged [cookies]

129 questions
0
votes
1 answer

Passwords not remembered

We'r running an IIS7 with our .NET4 aspx C# solution ontop as a site. I'm getting reports that some users experience their passwords needs to be retyped at times. I told my boss that is a client side cookie issue, from what knowledge I have of the…
DoStuffZ
  • 103
  • 3
0
votes
1 answer

Laravel/Apache "Bad Request"

I'm playing around with Laravel and implemented the Auth class to create a user registration/login system, i'm using the cookie driver so that members can stay logged in. But most of the time it will not log me in, and if it does log me in as soon…
Goodbytes
  • 111
  • 1
  • 2
  • 4
0
votes
1 answer

Can Apache clean cookies from a request to specific URLs?

We have the following configuration: AuthFormAuthoritative Off AuthType None Allow from all Satisfy any Options FollowSymLinks Problem: I do not want any cookie will be send to the Apache directory…
Michael
  • 587
  • 3
  • 9
  • 23
0
votes
1 answer

.htaccess RewriteRule with cookies not working

The Joomla CMS Platform has an /administratotr/ folder which cannot be renamed. I'd like to secure it by requiring a custom url parameter to access it - I.E. /administrator/index.php?token=1149785380. After accessing this url, an html session cookie…
skibulk
  • 101
  • 1
  • 2
0
votes
1 answer

Google Analytics setting cookies on static content despite being on entirely separate domain

I recently decided to comply with the YSlow recommendation that static content is hosted on a cookieless domain. As I already use the root of my domain (donaldjenkins.com) to host my website—on which Google Analytics sets a few cookies—that meant I…
0
votes
1 answer

curl cookie and cookiejar trouble

I've got a script that curls a site using a specific cookie value in a cookie file. When I run this on my local system, the server returns the same value to my cookie jar, as per my expectations. When I run this same script from another physical…
JT Gray
  • 116
  • 1
  • 8
0
votes
1 answer

Why can't Windows Server 2008 create cookies?

Scenario: I have a web application (SnapshotServer) which uses a WebBrowser control to take a snapshot images of a web page. I use a WebBrowser control within SnapshotServer to navigate to a entry page of a secure web application (ImageHost) and…
0
votes
1 answer

Enforcing a specific order for cookie headers

We have an application that cares about the order of cookie headers. It shouldn't, since this isn't mandated by the standards and indeed we're getting the headers in various different orders So we would like to rewrite the headers in Apache so that…
0
votes
2 answers

$_COOKIE and subdomains

I've written a cookie for my domain + subdomain: setcookie("visitor", $visitor, time()+60*60*24*365, "/", ".mydomain.net"); but when I try to read it from within subdomain.mydomain.net, it's empty. Could it be that $_COOKIE[] tries to read the…
stevenvh
  • 103
  • 2
  • 3
  • 8
0
votes
1 answer

Extending/modifying proxy functionality (concerning the cookie header)?

a few months ago I wrote a proxy in python that modifies certain request. It added a cookie header towards the requested webpage and removed that header on the way back. However I lost this code due to a hard drive failure and data recovery is…
0
votes
2 answers

Trying to destroy ASP cookie with PHP

A logon credentials cookie is being created by an ASP script on our server. In a different directory, we have PHP scripts that need to access just the username from this cookie, which is does successfully. The problem is, when you click the logout…
Lawrence Westen
0
votes
1 answer

Squid 3.1 Not Allowing Cookies Possible SSL issue?

I'm doing a poor job finding this in the documentation, but as of right now attempting to login to sites like gmail through the proxy gets me into a redirect loop with sites saying cookies aren't enabled. In old documentation I can find there is a…
scraft3613
  • 470
  • 1
  • 4
  • 12
0
votes
2 answers

Stripping cookies from image files?

I want to achieve cookie free image serving as discussed here : http://code.google.com/speed/page-speed/docs/request.html#ServeFromCookielessDomain I have created a new sub-domain "static.example.com" serving only images, javscript and css (file…
iTech
  • 355
  • 4
  • 15
0
votes
0 answers

Nginx Ingress Controller - configure cookie stickiness and upstream hash by request

I am running nginx as an ingress controller for my Kubernetes cluster and I have a use case where I am using cookie affinity to persist the client to a specific pod for session purpose. I am using the following…
Virtuose
  • 537
  • 1
  • 6
  • 11
0
votes
1 answer

Update request cookie for Varnish ESI-include requests from initial `beresp`

I have an application that is fronted by a Varnish server. Parts of the page is rendered using ESI includes. My problem is that the upstream response includes an encrypted session cookie, which among other things contains a CSRF token (no…
nikc.org
  • 103
  • 4
1 2 3
8
9