1. What are the future works mentioned in the paper "Using parse tree validation to prevent sql injection attacks" ?
In the near future, the authors plan to implement their solution on the.
read more
2. What are the contributions in "Using parse tree validation to prevent sql injection attacks" ?
In SQL injection, the attacker provides user input that results in a different database request than was intended by the application programmer.. The authors describe a technique to prevent this kind of manipulation and hence eliminate SQL injection vulnerabilities.. For empirical analysis, the authors provide a case study of their solution in J2EE.. The authors implement their solution in a simple static Java class, and show its effectiveness and scalability.
read more
3. Why is it important to write queries as dynamically generated strings?
The main reason for writing queries as dynamically generated strings (as opposed to prepared statements) appears to be ease-of-use.
read more
4. What is the common way to indicate the start of a comment?
Most SQL imple-mentations, such as T-SQL and PL/SQL use – – to indicate the start of a comment (although occasionally # is used).
read more





