paoloo/sqlmap

By paoloo

Updated over 9 years ago

Dockered sqlmap. Build instructions: https://github.com/paoloo/sqlmap

Image
7

10K+

paoloo/sqlmap repository overview

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!

Tag summary

Content type

Image

Digest

Size

19.7 MB

Last updated

over 9 years ago

docker pull paoloo/sqlmap