Search:

Type: Posts; User: amughost

Search: Search took 0.11 seconds.

  1. [SOLVED] Re: How to modify core Java interface java.sql.Statement.execute(String sql)?

    I would say PreparedStatement prevents from SQL Injection, but not protects you. It is still vulnerable.
    The Statement.executequery() implementation is under MySQL module for Java called MySQL...
  2. [SOLVED] Re: How to modify core Java interface java.sql.Statement.execute(String sql)?

    Sorry, I have found the solution already. Thank you!
  3. [SOLVED] Re: How to modify core Java interface java.sql.Statement.execute(String sql)?

    I have found that in PHP, it is possible to change MySQL module and embed sanitization there, and then sent the query to MySQL engine for execution
  4. [SOLVED] Re: How to modify core Java interface java.sql.Statement.execute(String sql)?

    There should be a way of doing it without modification to the entire library modification, because the idea is to enhance methods, but not to change the whole structure of library.
    I need to filter...
  5. [SOLVED] How to modify core Java interface java.sql.Statement.execute(String sql)?

    Hello,

    I am trying to find a way on how to modify java.sql.Statement.execute(String sql) method.
    It is in interface and unfortunately no implementation class found in src package of Java.

    Can...
Results 1 to 5 of 5