| Classic ASP | Active Server Pages (ASP)
(also known as Classic ASP or ASP Classic)
Microsoft Active Server Pages (ASP) is a server-side scripting environment that you can use to create and run dynamic, interactive Web server applications. With ASP, you can combine HTML pages, script commands, and COM components to create interactive Web pages and powerful Web-based applications that are easy to develop and modify. |
|
|
|
Author: carrzkiss # of Entries ( 34 )
Entry #: 20
This Entry has been viewed: 571 times
|

Share With Friends (Updated 6-8-2010)
|
| Title Of Entry ( Classic ASP md5 Hash Login Script ) |
What this Entry is about? Classic ASP md5 Hash Login Script with md5 Hash protection as well as XSS and SQL Injection Provention. This script is secure and tight, and just right for protecting your ASP Classic website. |
Description (or) Code Implementation Instructions: This script is very powerful and is already used by over a thousand people and still counting.
Just updated it to use MD5 protection, to secure it even more. (Look at coding history below)
This script will allow you to set up a login page for your site.
This script however, does not come with the registration form.
{=History of the Login Script=}
Login to: Carrzkiss's Demo Cookie Logger
Made better than ever.
Using Parameters to help stop SQL Injections.
Updated on: 3:33am EST September 15th, 2009
Updated on: 5:48pm EST May 21st, 2010
Added in Full Database connection, this will allow you to stop potential
People from downloading your database.
FINAL UPDATE
Update on: 6:12am EST June 22, 2011
Added in md5 hash for password logins. This helps for keeping your
Users information safe and secure behind a wall.
This all with the September 15th, 2009 SQL and XSS Injection prevention
Makes this code a very HIGH priority for any ASP Classic Developer.
View Demo Page« |
Supported Files You must be a member to download Code Support Files! Click here to Register for FREE! Register Here
|
Code View:
View Plain Text
<%
Set getPW = Server.CreateObject("ADODB.Command")
getPW.ActiveConnection=objConn
getPW.CommandText = "update Users set [password]=? where [password]=?"
getPW.Parameters.Append getPW.CreateParameter("@password", adVarChar, adParamInput, 255, md5(chPW("password")))
getPW.Parameters.Append getPW.CreateParameter("@password", adVarChar, adParamInput, 255, chPW("password"))
getPW.execute
%> |
Code Pic:
|
| Post Comment for Classic ASP md5 Hash Login Script |
|
|
| |
|