# Libinjection **Repository Path**: dscxueyan/Libinjection ## Basic Information - **Project Name**: Libinjection - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-25 - **Last Updated**: 2026-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Libinjection - Java This is a porting of the SQLi detection tool [libinjection](https://github.com/client9/libinjection) to Java. ```Java public class Main { public static void main(String[] args) { /* test a string */ Libinjection a = new Libinjection(); boolean issqli = a.libinjection_sqli("admin' OR 1=1--"); System.out.println(issqli); /* test a file and output its results to another file, with options to urldecode and time (in milliseconds) */ Test t = new Test(); t.testfile("data/sqli.txt", "data/resultsfile", true, false); } } ``` So far it's been tested on around 85,000 SQLi input collected from the original libinjection library [here](https://github.com/client9/libinjection/tree/master/data), with results matching those of the original libinjection. Speed-wise similar to the original project (performance climbs as JVM optimizes). This project was developed at [Qubit Security Inc.](http://en.qubitsec.com/)