Security and Cryptography
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationSecurity and Cryptography

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 6th, 2003, 07:20 AM
Quirk Quirk is offline
Novice in Need
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Location: England
Posts: 102 Quirk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 23 m 7 sec
Reputation Power: 6
Cookies / history

Please help!
How can I ensure that cookies / history are NEVER saved so that once my user has closed their browser window no-one else can view the same pages.
Thanks

Reply With Quote
  #2  
Old May 6th, 2003, 07:31 AM
a.koepke's Avatar
a.koepke a.koepke is offline
Second highest poster :p
Dev Shed God 5th Plane (7000 - 7499 posts)
 
Join Date: Jul 2001
Posts: 7,323 a.koepke User rank is Sergeant (500 - 2000 Reputation Level)a.koepke User rank is Sergeant (500 - 2000 Reputation Level)a.koepke User rank is Sergeant (500 - 2000 Reputation Level)a.koepke User rank is Sergeant (500 - 2000 Reputation Level)a.koepke User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 8 h 13 m 55 sec
Reputation Power: 27
Well you really cant prevent your site being saved in the history. Generally you can set headers that will cause the browser not to cache the page and therefore when they access it from the history a new request to the server is made.
__________________
- Andreas Koepke

Koepke Photography


Reply With Quote
  #3  
Old May 6th, 2003, 11:10 AM
Quirk Quirk is offline
Novice in Need
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Location: England
Posts: 102 Quirk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 23 m 7 sec
Reputation Power: 6
Thanks, but could you tell me exactly how to do this, nothing I've tried actually works. Cheers

Reply With Quote
  #4  
Old May 17th, 2004, 11:04 PM
Alas's Avatar
Alas Alas is offline
Wickedwd.com
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Location: wickedwd.com
Posts: 187 Alas Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 17 h 32 m 22 sec
Reputation Power: 0
Red face Same here

Yeah I'm Having the same problem, they told me to use the CFflush tag, but that's kind of vague

Reply With Quote
  #5  
Old May 21st, 2004, 08:48 AM
mitakeet's Avatar
mitakeet mitakeet is offline
Last Day: May 28, 2005
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Jul 2003
Location: Maryland
Posts: 4,575 mitakeet User rank is Sergeant (500 - 2000 Reputation Level)mitakeet User rank is Sergeant (500 - 2000 Reputation Level)mitakeet User rank is Sergeant (500 - 2000 Reputation Level)mitakeet User rank is Sergeant (500 - 2000 Reputation Level)mitakeet User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Week 2 Days 9 h 51 m 4 sec
Reputation Power: 21
All you can do is ask the client program (i.e., IE (like the pun?)) to discard the data, there is no way you can enforce that. It is much better to use meaningless tokens on the client that expire in a very short period (they can be refreshed as often as the user access a page) and store any relevant data on the server. Anything else is insecure, period. This goes for any and all SSL connections, the client can record anything and everything in clear text.
__________________

Left DevShed May 28, 2005. Reason: Unresponsive administrators.
Free code: http://sol-biotech.com/code/.
Secure Programming: http://sol-biotech.com/code/SecProgFAQ.html.
Performance Programming: http://sol-biotech.com/code/PerformanceProgramming.html.

It is not that old programmers are any smarter or code better, it is just that they have made the same stupid mistake so many times that it is second nature to fix it.
--Me, I just made it up

The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore, all progress depends on the unreasonable man.
--George Bernard Shaw

Reply With Quote
  #6  
Old June 6th, 2004, 10:52 AM
juniperr juniperr is offline
network dude
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Dec 2003
Posts: 1,679 juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level)juniperr User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 21 h 55 m 2 sec
Reputation Power: 85
if you have a microsoft domain then try using roaming profiles that store that stuff on the server in the users profile and not the local machine and only gets pushed down to the user that logged in. actualy just having the users log into a domain and not giving them rights to other users profiles would have the same affect unless they crack the local admin account or domain admin account. if you have novell server then use zenworks with dynamic local user that deletes the local user account at log off. this all only applies if using windows XP/2000/2003, 9x has no security built in, you could purchase a cleaning tool that will wipe those entries out at logoff and delete using DoD standards for cleansing just do a google search theres plenty out there.

Last edited by juniperr : June 6th, 2004 at 10:58 AM.

Reply With Quote
  #7  
Old June 7th, 2004, 04:25 PM
teki associates teki associates is offline
Retired
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 252 teki associates User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 30 m 20 sec
Reputation Power: 5
Quote

"Cookies / history
Please help!
How can I ensure that cookies / history are NEVER saved so that once my user has closed their browser window no-one else can view the same pages.
Thanks"

What platform scripting e.g. or is this a user on a network?

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationSecurity and Cryptography > Cookies / history


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT