From 6f66d53b6eb25091f30fed26ed4c8cd965515ff2 Mon Sep 17 00:00:00 2001 From: securibee Date: Wed, 25 Nov 2020 13:51:11 -0500 Subject: [PATCH] fix: Readme Docker example nuclei templates path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec4558b6a..609e58052 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ After downloading or building the container, run the following: For example, this will run the tool against all the hosts in `urls.txt` and output the results to your host file system: ```sh -▶ cat urls.txt | docker run -v /path/to/nuclei-templates:/app/nuclei-templates -v /path/to/nuclei/config:/app/.nuclei-config.json -i projectdiscovery/nuclei -t ./files/git-config.yaml > results.txt +▶ cat urls.txt | docker run -v /path/to/nuclei-templates:/app/nuclei-templates -v /path/to/nuclei/config:/app/.nuclei-config.json -i projectdiscovery/nuclei -t /app/nuclei-templates/files/git-config.yaml > results.txt ``` Remember to change `/path-to-nuclei-templates` to the real path on your host file system.