in reply to Re^2: Use PPI to Find SQL Injection Attacks
in thread Use PPI to Find SQL Injection Attacks

A minimal DBI subclass can be found here: Interpolate binds into SQL on error - DBI subclassing (possibly not the best example but since I wrote it I knew where to find it :-)). Basically you'd need to redefine execute() to do nothing, and redefine prepare() (in MyDBI::db) to do your injection checking.
  • Comment on Re^3: Use PPI to Find SQL Injection Attacks