CFF - Coding Source
CFF Knowledge Base
Have a coding issue or error? Visit our Knowledge Base!
Come on in a join CFF Coding Soure today, and become a part of the future.
We are constantly working on the development of CFF Coding Source and welcome you to help up make it better! In order to download any of the projects files that are added to the totorials, you must become a member. Please register today!
Username: Password:
Not a Member? => Register Here <=

Forgot your password or Username? [Request User Info]
Side wide page view: 37,305 Total Members Enrolled: 197
Total Articles Written: 34
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.
Coding Source - Profile For: carrzkiss (Wayne Barron) Author: carrzkiss
# of Entries ( 34 )
Entry #: 20
This Entry has been viewed: 571 times

Coding Source - Share on MySpace Coding Source - Share With Facebook Coding Source - Share on Twitter Coding Source - Share on Reddit Coding Source - Share on Digg It Coding Source - Share on Stumble Upon It Coding Source - Share on Delicious
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 Select 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:
Coding Source - Classic ASP md5 Hash Login Script from carrzkiss
Post Comment for Classic ASP md5 Hash Login Script
 
All codes, tutorials, examples, videos and literature information are the property of the author and owner and supplied here for learning and a higher
education of the subject. If you feel that your material has been used on this site without your permission, please go to the page in question, click on
the [Report Link], and give a detailed description to the issue. For all other inquiries please Contact Support with your concerns and we will get back with you as soon as we can.
Please read our Terms Of Use
CFF Coding Source is A ®Carrz-Fox-Fire Promotions©2000-2012 Company
Creation Date: Friday, January 29th, 2010, 6:25:47 AM
Live Date: Thursday, February 4th, 2010 2:31 AM
Redesign Date: Saturday, May 7th, 2011 1:52 PM