session-hijacking
Session Management and Security
This is my current session management: if(!isset($_SESSION[\"user\"][\"authenticated\"]) || !$_SESSION[\"user\"][\"authenticated\"])[详细]
2023-03-30 18:09 分类:问答Implementing Session Hijacking prevention, properly
I am pretty new to Web Development and I read about CSRF, XSS, and Session Hijacking. One proposed开发者_StackOverflow社区 solution is to simply use a nonce to check the validity of requests. I wrote[详细]
2023-03-30 13:51 分类:问答PHP Session Security: usefulness of checking $_SESSION['HTTP_USER_AGENT']
Threads such as PHP Session Fixation / Hijacking and some people like Chris Shiflett recommend checking the user agent ( $_SESSION[\'HTTP_USER_AGENT\'] ) to help check for session validity. Some resou[详细]
2023-03-25 05:25 分类:问答Good Method To Prevent Session Hijacking?
Scenario: Upon starting a session on my site, I generate a rand token that is shown to the user that once. Say they “store” it away for later use.[详细]
2023-03-02 14:48 分类:问答Avoiding session hijacking in ASP.NET
I recently read an article on making ASP.NET sessions more secure here and at first it seems really useful.[详细]
2023-02-13 09:55 分类:问答Django session gets confused behind proxy, already logged in
Currently we\'re having some issues with a user of our product who uses a proxy on their internal n开发者_运维知识库etwork.[详细]
2023-02-08 04:24 分类:问答Stealing session id cookies - counter measures
It is easy to steal session id cookies with javascript functions planted in trusted sites by other users. What are the possible counter-measures for this kind of attack?[详细]
2023-02-06 16:37 分类:问答How to secure pass and set session id?
I\'m using uploadify and the script (which uses adobe flash) creates a new session instead of usi开发者_如何学JAVAng the current one when requesting the upload action url. To fix that I need to pass a[详细]
2023-01-23 08:10 分类:问答crossdomain.xml and security issues
I read a lot about cross-site scripting with Flash, Javascript etc. and also found several lists with websites that have a crossdomain.xml that allows access from any server. For example flickr.com tr[详细]
2023-01-16 05:52 分类:问答Session hijacking and PHP
Lets just consider the trust that the server have with the user. Session fixation: To avoid the fixation I use session_regenerate_id() ONLY in authentication (login.php)[详细]
2023-01-12 08:47 分类:问答