On Tue, Jun 14, 2011 at 4:39 PM, Chris Seberino <[email protected]> wrote: > I have Apache in front of my Django app. It forces login pages to use > HTTPS but then forces rest of pages to only use HTTP. > > Is client browser sending sensitive login or session info in the clear > when I am not using HTTPS? >
Yes, of course it is - HTTP is stateless, so how else would sessions work if the session id is not transmitted back to the server by the browser? Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

