Secure Your ASP.NET Application from a SQL Injection Attack

Posted on January 17, 2008 - Filed Under Input Filtering | Leave a Comment

Perform validation on the user input to verify the input is limited to desired values. Data validation should be performed at both the client and the server. The server side validation is required to avoid a security weakness exposed by …
See original here: Secure Your ASP.NET Application from a SQL Injection Attack

Read More..>>

SOME USEFUL FACTS OF ASP.NET

Posted on January 14, 2008 - Filed Under Input Filtering | Leave a Comment

The web application you are attempting to access on this web server is currently unavailable. Please hit the “Refresh” button in your web browser to retry your request.”? …. 2.62, How to convert user input in dMy format to Mdy? …
View original post here: SOME USEFUL FACTS OF ASP.NET

Read More..>>

SQL injection

Posted on January 7, 2008 - Filed Under Input Filtering | Leave a Comment

The objective of this paper is to focus the professional security community on the techniques that can be used to take advantage of a web application that is vulnerable to SQL injection, and to make clear the correct mechanisms that …
Continued here: SQL injection

Read More..>>

Ed Finkler’s Blog: Inspekt 0.3 now available

Posted on January 1, 1970 - Filed Under Input Filtering | Leave a Comment

Ed Finkler has released the latest version of his Inspekt input filtering/output validation library for PHP5: I’ve uploaded the 0.3 release of Inspekt, the input filtering and validation library for PHP4 and 5. …
Credit:

Read More..>>

14 Security Tips For Developing With PHP and MySQL

Posted on January 1, 1970 - Filed Under security | Leave a Comment

Do not use user input directly in your SQL queries. Use mysql_real_escape_string() to escape the user input. PHP.net recommends this function: (well a little different). PLAIN TEXT. PHP:. function escape($values) { …
Here is the original: 14 Security Tips For Developing With PHP and MySQL

Read More..>>

RE: Official ZF QuickStart

Posted on January 1, 1970 - Filed Under security | Leave a Comment

For security reasons, it is inadvisable to keep your application\’s scripts in a directory that your web server makes publicly accessible. In this case, index.php immediately hands over control to your bootstrap.php file, which resides …
Continued here: RE: Official ZF QuickStart

Read More..>>

The Tainted Edition

Posted on January 1, 1970 - Filed Under security | Leave a Comment

In my opinion security is a process and you have to reconcile for each and every string what it represents and how to escape it in this context. Of course an automatic escaper can be a great help, but …
View post:The Tainted Edition

Read More..>>

Top Ten Security Tips Every Developer Must Know

Posted on January 1, 1970 - Filed Under security | Leave a Comment

Security risks can come from anywhere. You could write bad error handling code or be too generous with permissions. You could forget what services are running on your server. You could accept all user input. And the list goes on. …
See the original post here: Top Ten Security Tips Every Developer Must Know

Read More..>>

JIRA Security Advisory 2007-12-24

Posted on January 1, 1970 - Filed Under security | Leave a Comment

The fix is to escape all of the error messages rendered on the 500 page, so that no user input, which is propagated to …
The rest is here: JIRA Security Advisory 2007-12-24

Read More..>>

What is SQL Injection?

Posted on January 1, 1970 - Filed Under security | Leave a Comment

We can validate all the inputs of the user by:. 1. We reject entries that contain binary data, escape sequences, and comment characters to verify input from …
View original post here: What is SQL Injection?

Read More..>>

keep looking »