| TOTAL: 42 Page: 1 of 3 |
|
PHP Login script tutorial
Learn to create a simple login system with php + mysql script, this tutorial easy to follow, teach you step by step.

| Hits: | 37 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-08-31 |
Form image verification
When you build a form in your web page, you are susceptible to being spamed by automated systems. In order to make sure that the one who completes the form is human, you can use the system with image verification.

| Hits: | 19 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-07-22 |
email Injection - How to prevent it?
I persume that most of them would be knowing this attack and how to prevent it, but recently when i was googling i found out many feedback form scripts to be in secure. PHP is a majuscule and secure language, but it all depends upon the programmer style of coding.

| Hits: | 27 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-04-15 |
Block IP address with PHP
Its always a hard slog with spammers around the web. Once we have found the culprit, we generally move towards htaccess to lock the window and when its not available, we rely on the power of PHP.

| Hits: | 34 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2009-01-18 |
Basic string encoding/decoding functions
These are basic string encoding/decoding functions I developed for use in flat-file databases. They offer limited security to protect sensitive data from being viewed.

| Hits: | 28 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-01-17 |
Advanced IP Ban Script
This script is useful if you want to restrict the access to some people on your site, based on their IPs. There are 2 lists which can be used: one which has a list of the IPs you want to ban and one which you can use to ban a range of IPs. The script checks both lists and if the Visitor’s IP is in the list then the script will show a message to the user and exit.

| Hits: | 21 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-10-19 |
Basic PHP Security 1.0
In this tutorial we'll go over some of the areas of PHP that need special attention to make sure your code protects against malicious attempts, from SQL Injection to the underestimated - XSS.

| Hits: | 58 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-07-26 |
PHP CAPTCHA Tutorial
This tutorial will show you how to create a form with Captcha.

| Hits: | 42 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2008-03-26 |
Minimal Sanitation Techniques 1
This tutorial will show you sanitation techiques used by the pros so that your scripts will be secure, and resistant to any attacks.

| Hits: | 35 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2008-02-13 |
How to Spam-Proofing Your Website
Spam-Proofing Your Website Anyone who operates their own website knows that you need to provide forms in your site for visitors to contact you. The big challenge is providing easy form access to your visitors, without letting SPAM flood your email inbox or database. The techniques described in this article tell you how to reduce the amount of SPAM.

| Hits: | 45 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-02-02 |
Security in your online applications
This article is intended for the PHP beginner to intermediate level. The topics addressed here are nothing new and for the most part, should be common sense. However, as even newly posted tutorials and code examples still contain these basic mistakes, it must be worth reiterating. As magic quotes and register globals are no longer a part of PHP6, I will assume there is no longer a need to address those particular issues.

| Hits: | 61 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2007-11-21 |
PHP random password generator
PHP password generator is a complete, working random password generation function for PHP. It allows the developer to customize the password: set its length and strength. Just include this function anywhere in your code and then use it.

| Hits: | 39 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-10-05 |
Developing rock-solid code in PHP
This tutorial is intended for both amateur and professional PHP programmers who want to design and write quality functions. To complete this tutorial, you must have a basic level of working knowledge with PHP, and know how to define functions.

| Hits: | 45 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-07-23 |
PHP regular expressions examples
The regular expression, as a pattern, can match all kinds of text strings helping your application validate, compare, compute, decide etc. It can do simple or very complex string manipulations. The list of possibilities is enormous when it comes to what you can achieve using regular expressions. You can take any phrase that starts with an "A" or any character and do various things with it. You can match phone numbers, email addresses, url's, credit card numbers, social security numbers, zip code

| Hits: | 50 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2007-05-31 |
Redirect http:// to https://
I have been looking online for some time to redirect http:// URL to https:// automatically. So when user request for cripperz.com it will be redirected to https://cripperz.com.

| Hits: | 49 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2007-04-16 |
Exploit Protection - Reducing PHP Exploits on Your Site
When dealing with PHP, especially dynamics, it's important to always consider security. Here are some simple tips that will help you deal with the most common of those problems and exploits. 1. Disable register_globals. Disabling register_globals and using $_GET to obtain URL variables is much more secure. It prevents the visitors from changing other important variables in your code. To do this do the following: //In your .htaccess file add: php_flag register_globals 0 //In your PHP files,

| Hits: | 106 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Simple Password Protection Script - Detailed comments and working example!
n this tutorial I will teach you how to make a very simple text based password protection script.
View a demo here, use the username user and the password demo.
I will first give you all the files then I'll explain them.
form.html
CODE
Login
Javascript Injection Protection - Protect your databases from injection!
What is Java Injection? Java injection is where some trouble maker comes and tries to enter java script into your MySQL database. This could lead to serious problems. Thats why when I make scripts I allways use this and real_encaps_Strings to filter out anything bad. Step 1 Ok, lets pretend we have a form where someone can submit thier site URL and some other info.

| Hits: | 105 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Admin Control Panel with Sessions - Create a secure admin control panel script
This tutorial will show you how to create a simple way to protect your admin control pages, using sql to store the users info to which you want to give access to. When the user tries to login to this admin panel the information they enter will be checked by your database and if it is correct it will redirect them to your index page, otherwise it will send them back to the login page! Ok enough talk, lets get the login form done! Login.html CODE
Basic HTTP Authentication - Learn Basic HTTP Authentication Using PHP with this
For one, The HTTP Authentication in PHP are only available when it is running as an Apache module. If you are not using the PHP as an Apache module this tutorial will not work for you! Using the header() function, it is possible to send an "Authentication Required" message the clients browser and request them to input a username and password similar to as if you did it in .htaccess. Let's get started with the first part of our code: if (!isset($_SERVER['PHP_AUTH_USER'])) { } el

| Hits: | 72 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |