Dockered sqlmap. Build instructions: https://github.com/paoloo/sqlmap
10K+
Docker image for sqlmap.
https://github.com/paoloo/sqlmap
Basic syntax: $ docker run --rm -it -v /tmp/sqlmap:/root/.sqlmap/ paoloo/sqlmap --url www.example.com/?id=1 and the report will be found at /tmp/sqlmap.
If you want to modify and/or build this image: $ git clone [email protected]:paoloo/dockered-sqlmap.git $ cd dockered-sqlmap/ $ docker build -t paoloo/sqlmap .
You can create a bash wrapper for docker run commands in you .bashrc or similar:
docker-sqlmap(){
docker run --rm -it
-v /tmp/sqlmap:/root/.sqlmap/
paoloo/sqlmap "$@"
}
and use it with:
$ docker-sqlmap --url "http://www.site.com/checkout.php?id=10"
Enjoy!
Content type
Image
Digest
Size
19.7 MB
Last updated
over 9 years ago
docker pull paoloo/sqlmap