Problem I recently asked for a code review to my login system. This login system was fully directed to the […]
Tag: session
Simple tracking online users in ASP.NET
Problem I wrote simple online users tracking for my ASP.NET MVC project. In Global.asax I added: protected void Session_Start(Object sender, […]
Logging out users securely
Problem Is there anything I need to add or is this the best security possible? <?php //Get Sessions Prepared; session_start(); […]
Making a simple session class more secured
Problem I just wrote the session class below. I humbly request for a review on how to make this even […]
Making user login system secure with $_SESSION [closed]
Problem Closed. This question is off-topic. It is not currently accepting answers. Questions must include the code to be reviewed. […]
Php session wrapper class
Problem class session{ //variabile folosite private static $_sessionStarted = false; private static $_crypt = ‘qwerty347658@$%AdfSV045*&erT2Erb%6w!07&[.?;ru’; private static $_salt = ‘qwertyAF347658@$%AdfSV045*&erTyUsdfYtrLmncBGhu’; […]
Is this a safe Login?
Problem I’ve been doing a lot of searching on PHP, logins, forms, cookies, sessions, etc. And so, I’ve tried to […]
SessionHandlerInterface Class
Problem The following class is used for handling sessions: class DBHandler implements SessionHandlerInterface { protected $exists; public function open($save_path, $name) […]
My Session Handler
Problem I’m yet to add garbage cleanup, ID regeneration and the ability to unset sessions, but this is what I […]
PHP Session handling class
Problem I’ve written a custom PHP session class for handling sessions across the web app. Please review the code and […]