Jump to content

checking for illegal characters in an input


knobby2k

Recommended Posts

Hi Guys,

 

This should be a simple one.

 

I am looking for the best way to ensure that any illegal characters are removed from an input.

 

I have a user registration form and login page. What I want to do is prevent against sql injection and therefore should be limiting the characters that can be entered.

 

For example I want a username to include only letters and numbers so I ideally want to strip out any white space, illegal characters such as " ' ( ) etc...

 

My issue with this is with the password, I would ideally like the user to be able to put as complex a password as they would like, so how would i prevent against illegal characters in this instance??

 

Cheers

 

 

Link to comment
Share on other sites

For example I want a username to include only letters and numbers so I ideally want to strip out any white space, illegal characters such as " ' ( ) etc...

Using mysql_real_escape_string will help to prevent sql injection attacks.

 

My issue with this is with the password, I would ideally like the user to be able to put as complex a password as they would like, so how would i prevent against illegal characters in this instance??

Just encrypt the password straight away using md5 or sha1 encryption. These only return hashes that contain letters and numbers regardless of what characters the user has in their passwords. Example

echo sha1('mybad"password"');
echo "<br />";
echo md5('mybad"password"')

Will return the following hashes

107577e77c5ef454152af92f84ab36f5a9fdae75 <- sha1 hash
0c2f336b9977f0c40f1782e43f57e2e2 <- md5 hash

 

Link to comment
Share on other sites

For example I want a username to include only letters and numbers so I ideally want to strip out any white space, illegal characters such as " ' ( ) etc...

Using mysql_real_escape_string will help to prevent sql injection attacks.

 

My issue with this is with the password, I would ideally like the user to be able to put as complex a password as they would like, so how would i prevent against illegal characters in this instance??

Just encrypt the password straight away using md5 or sha1 encryption. These only return hashes that contain letters and numbers regardless of what characters the user has in their passwords. Example

echo sha1('mybad"password"');
echo "<br />";
echo md5('mybad"password"')

Will return the following hashes

107577e77c5ef454152af92f84ab36f5a9fdae75 <- sha1 hash
0c2f336b9977f0c40f1782e43f57e2e2 <- md5 hash

 

ahhh so that would protect against someone entering... ' ' OR 1'' ...into the password field because all i'm checking for is the hash?? I'm i understanding that correctly??

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.