Is there any function or library which can be used to clean the user input. Like for example if the user input a text called baily's then i should escape the ' before sending it to mysql query. Similarly i should be able to filter null characters and \n, \t, \r etc.. Like in PHP we have mysql_real_escape_string($input) is there anything in Java to do this ?
|
|
||||
|
In Java, you don't usually do this by hand. Instead you'll use a This way the JDBC driver will handle it (either by doing the necessary escaping or by sending the SQL statement separately form the arguments, depending on the DB). For example, your code could look like that (using
|
|||
|
|
|
You use prepared statements with placeholders for this. See http://download.oracle.com/javase/tutorial/jdbc/basics/prepared.html Just like you should in PHP: http://php.net/manual/en/pdo.prepared-statements.php I mean no offense when i say that only idiots would use |
|||
|
|
|
You should use PreparedStatement and set the values of The reason for using |
|||
|
|
|
The escaping you use is specific for the system you want to use the string for. If you use MySQL, you have to do different escaping than if you want to use the string in a piece of Javascript. So to answer your question, we need to know how you want to escape your string. Chances are you don't need to escape the string before you use it in a database context. For example, if you use prepared queries, you don't need to escape your values. |
|||
|
|
|
Short answer, no, except for very specific definitions of "clean". Right now you have to use a language specific solution -- for SQL, just use a prepared statement. Longer answer, there has been recent work on automatic string sanitizers that figure out how to incorporate plain text content safely & correctly into content in other languages. Automatic contextual auto-escapers exist for HTML in template languages like Soy, Go, a variant of jQuery, cTemplates, clearsilver and hopefully others soon. There is research happening on generalizing this so that it can easily be extended to other languages. One idea that I'm working on is taking an annotated grammar that describes a target language like SQL and figure out what escaping needs to be done for holes that can be filled with user data. Given a grammar like the below which includes annotations that show how the structure of data maps to substrings within the language:
we can build a state machine like the below:
which converts sequences of events (start, start_object, start_key, character 'x', ...) into instructions that encode characters onto a buffer. From that state machine we can also generate generic traces of instructions to use to generate efficient code for encoders, and hopefully the context analysis algorithms that figure out which encoders to apply when. If this works, it would make it easy to incorporate into general-purpose programming languages, mechanisms for automatically & securely composing content in languages like SQL, HTML, etc. With tweaks to language definitions to allow |
|||
|
|

JDBC - how to escape user-supplied parameters with a sql query– Jigar Joshi Jul 11 '11 at 11:58