jsql-injectionis a Kali integrated Web penetration Testing tool developed using Java. Initially, the tool mainly implemented SQL injection, and later increased the management of page violence scanning, sensitive file guessing, Web shell, SQL shell, upload and other functions, expand the formation of a comprehensive Web penetration testing tools. The currently available version is the V0.81,github project address: Https://github.com/ron190/jsql-injection, which has a graphical interface and full Chinese support compared to sqlmap.
Download the source tarball from GitHub to compile it, first click Import in MyEclipse, select exist MAVEN projects
Select the extracted file
MAVEN will automatically download the dependency package, waiting for the download to complete, the Pom.xml file will appear on the two dependencies of the error
I have queried two maven repositories (http://maven.aliyun.com and http://mvnrepository.com have not found a corresponding dependency)
<Dependency> <groupId>Spnego</groupId> <Artifactid>Spnego</Artifactid><version>7.0</version></Dependency>
<Dependency> <groupId>Jcifs</groupId> <Artifactid>Jcifs</Artifactid> <version>1.3.18</version></Dependency>
If the author's dependency package version is right, then these two dependencies should be
<Dependency> <groupId>Net.sourceforge.spnego</groupId> <Artifactid>Spnego</Artifactid> <version>7.0</version></Dependency> <Dependency> <groupId>Org.samba.jcifs</groupId> <Artifactid>Jcifs</Artifactid> <version>1.3.18-kohsuke-1</version></Dependency>
In http://mvnrepository.com this warehouse can be found, Aliyun warehouse is still not, if maven use Aliyun mirror, you can manually download the jar package
http://mvnrepository.com/artifact/net.sourceforge.spnego/spnego/7.0
Http://mvnrepository.com/artifact/org.samba.jcifs/jcifs/1.3.18-kohsuke-1
Click on the jar to download the corresponding jar package.
then place the corresponding
"Your Maven warehouse" \net\sourceforge\spnego\spnego\7.0\
"Your Maven warehouse" \org\samba\jcifs\jcifs\1.3.18-kohsuke-1\
Two directories, and delete the. lastupdated file in the directory.
Then reopen the project in MyEclipse and compile with javase1.8
Choose
If you have output from the console
05
Run Regedit.exe, go to Hkey_local_machine\software\javasoft, right-click the JavaSoft directory, select New-----key, named Prefs, recompile.
Written in the last
If you have trouble, you can download the runnable jar file directly, Https://github.com/ron190/jsql-injection#installation-jsql-injection-v081jar
Jsql-injection Java Automated SQL Injection test Tool-jsql injection v0.81