Showing posts with label security. Show all posts
Showing posts with label security. Show all posts

Friday, October 12, 2018

The Art of Web API Design

Web applications don't talk with front-end and database only anymore. They increasingly often talk with each other. In order not to get ...

Monday, August 12, 2013

How to block hackers from scanning your website using htaccess file

You can use mod_rewrite to block hackers from scanning your site with various security scanners like sqlmap, Openvas .... tools. Paste this ...

Sunday, July 7, 2013

Best practices for setting a password

Make sure you create a unique password to help keep someone from breaking in to your account. Here are a few tips for creating your password...

Tuesday, February 5, 2013

How to prevent session hijacking on PHP

Using SSL is the best solution to encrypt all http requests, but when it's not a possibility, you can store IP's address along with ...

Friday, January 25, 2013

How to secure HTML hidden input fields

A hacker can access hidden fields just as easily as querystring values by using an intercepting proxy (or any number of tools). I dont thin...