|
Silentum PasswordGen is an
This article demostrates an
SSL is an internet security
Learn how to use mod_rewrite
excellent password generator
easy way to maintain
protocol. When a web server
to your advantage to take
tool if you need passwords
sessions and security (or
sends out content through
some overhead off your PHP
for email clients, message
authorization) in PHP. It
HTTPS, this one gets
script and validate Query
boards, IM programs, or any
does NOT use the PHP built
encrypted so that only the
Strings faster and more
other protected pages. It
in session support. The
client making the request
securely than any hard coded
has various options,
following method will allow
can read it.
PHP script.
including choosing whether
you to easily secure any PHP
to use lowercase/uppercase
page by simply including a
letters, numbers, and
file at the top of every
symbols, in any combination
page. In this tutorial you
you desire. Its character
will: a) Create your
limits extend between 5 and
database structure; b)
50, and you can generate 1
Create a login page; c)
to 5 passwords at a time.
Create your security check
You can use this for your
include file; d) Secure your
own personal use, or place
site.
Update: I fixed a
it on your site to allow
couple of bugs in the
visitors to generate their
article. Thanks for the
own passwords. It runs
feedback
Update to the
entirely on a single PHP
update: I have fixed the
file, and doesn't require
article text to include the
any MySQL.
code that was missing due to
the previous update.
Date: Nov, 15 2006 Date: Nov, 26 2003 Date: Apr, 17 2005 Date: Jun, 12 2006 |
|
This article will guide you
through writing secure PHP
code and covers many of the
common security pitfalls one
will encounter while making
php applications. Covers
things such as register
globals, SQL injection,
include files, and
demonstrates how to protect
against those kind of
attacks. Anyone new to PHP,
and even some more
experianced people, should
read this before deploying
thier application.
Date: Dec, 09 2003 |