Files
recon-pipeline/pipeline/tools/seclists.yaml
epi 973893ee42 removed dependency on tool-dict.pkl (#93)
* removed tool_dict dependency

* updated tests

* updated go version

* added defaults for failing iteration during tool installation

* Update pythonapp.yml

* updated docs
2020-08-27 20:40:15 -05:00

11 lines
431 B
YAML

tools: &tools !get_default "{tools-dir}"
path: &path !join_path [*tools, seclists]
install_commands:
- !join ["bash -c 'if [[ -d /usr/share/seclists ]]; then ln -s /usr/share/seclists",
*path, "; elif [[ -d", *path, "]] ; then cd", *path, "&& git fetch --all && git pull;",
"else git clone https://github.com/danielmiessler/SecLists.git", *path, "; fi'"]
uninstall_commands:
- !join [sudo, rm, -r, *path]