mirror of
https://github.com/aljazceru/recon-pipeline.git
synced 2025-12-20 15:54:25 +01:00
* removed tool_dict dependency * updated tests * updated go version * added defaults for failing iteration during tool installation * Update pythonapp.yml * updated docs
12 lines
351 B
YAML
12 lines
351 B
YAML
tools: &tools !get_default "{tools-dir}"
|
|
path: &path !join_path [*tools, masscan]
|
|
|
|
install_commands:
|
|
- git clone https://github.com/robertdavidgraham/masscan /tmp/masscan
|
|
- make -s -j -C /tmp/masscan
|
|
- !join [mv /tmp/masscan/bin/masscan, *path]
|
|
- rm -rf /tmp/masscan
|
|
- !join [sudo setcap CAP_NET_RAW+ep, *path]
|
|
|
|
uninstall_commands:
|
|
- !join [rm, *path] |