mirror of
https://github.com/aljazceru/recon-pipeline.git
synced 2025-12-21 00:04:24 +01:00
* removed tool_dict dependency * updated tests * updated go version * added defaults for failing iteration during tool installation * Update pythonapp.yml * updated docs
11 lines
431 B
YAML
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]
|