Website Registration Made Easy

Website registration shouldn’t be difficult and it isn’t if you keep it as simple as possible. If you’re not using SSL, you have to keep in mind that a malicious hacker could be sniffing packets and can capture anything sent at registration time. For this reason and this reason alone, you should never allow passwords [...] Read more »

Creating a LEMP Stack that Works

A LEMP stack is defined as a stack of software applications which basically means: Linux, NginX, MySQL and PHP. Unlike LAMP stacks (Apache instead of NginX), LEMP stacks aren’t built into Linux distributions yet. If you want a LAMP stack, you can just install it with apt-get install lamp on Debian-based distributions (including Ubuntu and [...] Read more »

How to Prevent Session Hijacking with PHP

Session hijacking can occur on standard HTTP pages (pages not protected by SSL) through various means including packet sniffing. There are measures you can take to make session hijacking difficult, if not impossible, for all but the most experienced hackers. I’ll go over these briefly and let you make up your mind how much security [...] Read more »