From b9234a161ebdf8e6437438a21298471249cf0184 Mon Sep 17 00:00:00 2001 From: "A. Lester Buck III" Date: Mon, 18 Oct 2021 12:38:31 -0500 Subject: [PATCH] Fix typo in sample docker command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5127b91..cdfbcf5 100755 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Launch redis in the background: `docker run -d --name redis1 redis` Start changeme linking the redis container by name and mounting a local directory into the container's `/mnt` directory: `docker run -it -v /tmp/results:/mnt --link redis1:redis ztgrace/changeme:latest /bin/sh` -Run changeme with a `--redishost` of `redis` and `--output` file in our mounted volume: `./changeme.py --redishost redis --output /tmp/mnt/results.csv --protocols ssh --threads 20 -d 192.168.1.0/24` +Run changeme with a `--redishost` of `redis` and `--output` file in our mounted volume: `./changeme.py --redishost redis --output /mnt/results.csv --protocols ssh --threads 20 -d 192.168.1.0/24` ### Build from Dockerfile