Get support for sagikazarmark/docker-sqlmap

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

sagikazarmark/docker-sqlmap

SQLMap Docker image

Run SQLMap inside Docker.

Usage

$ docker pull sagikazarmark/sqlmap
$ docker run --rm -it -v $HOME:/var/sqlmap sagikazarmark/sqlmap [your params here]

Shell integration

Typing the docker run... command every time (even with shell history) is long and a waste of time. There must be a better way...

There is! Add the following to your .bashrc or .zshrc:

sqlmap() {
    tty=
    tty -s && tty=--tty
    docker run \
        $tty \
        --interactive \
        --rm \
        --user $(id -u):$(id -g) \
        --volume $HOME/.sqlmap:/var/sqlmap \
        sagikazarmark/sqlmap "$@"
}

Note: Since on macOS the containers are not accessible directly using their IP addresses, you have to use port mapping to reach them. However, this does not work with other (unlink) containers well. For example if your target application is available at localhost:8080, but the original port is 80 then you have to find the IP address of the container using docker inspect and use that instead.

License

The MIT License (MIT). Please see License File for more information.

Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2