Atozed Forums

Full Version: Security Questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have 2 security questions for iw14.

1.  Can someone tell me where/how intraweb uses an http post and/or http get request?   

2.  How can I limit the data that the browser caches on the client computer?

Thanks
(04-10-2018, 11:48 AM)joel Wrote: [ -> ]2.  How can I limit the data that the browser caches on the client computer?



Hi Joel,

Only for Q2, I think this is an HTML metadata request. You can try something like:

Quote:
Code:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="01 Jan 2018:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />


I got this from https://stackoverflow.com/questions/1341...l-browsers and it is better to read the whole thread.


Mohamed