Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
String searchSQLFilter(String keyword){         
    for(String filter:new String[]{"|","&","*","%",";","-","+",",","<",">"}){
        keyword=keyword.replaceAll("\\Q"+filter+"\\E", ""); 
    }
    keyword=keyword.replaceAll("'","\\\\'");
    return keyword; 
}

sql query:

select * from table where title like '%"+searchSQLFilter(keyword)+"%'

I want to know,searchSQLFilter method is safe?

btw: I know this is not good,using PreparedStatement is better

share|improve this question
Might I ask why you want to do your own filtering? – inflagranti Sep 3 '11 at 18:32

2 Answers

up vote 3 down vote accepted

Sorry, no, it isn't.

Creating your own escaping function is a bad idea: you won't catch all the cases. Vendor-built escaping functions have been tried and tested by millions of users, and patched where necessary.

Example: did you take character encoding into account?

share|improve this answer

Not a final answer... a blacklist approach can only be safe at a given point in time. You're missing the complex ones like union. At least ' should be included in the blacklist as well.

As you already mentioned - prepared statements are better!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.