2021-02-03 21:17:48 -06:00
|
|
|
---
|
|
|
|
# Nmap port test
|
|
|
|
|
2021-02-03 21:39:24 -06:00
|
|
|
- name: General | Tests | nmap | Run Count
|
2021-02-07 06:07:02 -06:00
|
|
|
shell: "nmap --open localhost | grep -c open > {{ nmap_report }}; echo success"
|
2021-02-03 21:29:45 -06:00
|
|
|
|
2021-02-03 21:39:24 -06:00
|
|
|
- name: General | Tests | nmap | Run Open
|
2021-02-07 06:07:02 -06:00
|
|
|
shell: "nmap --open localhost | grep open >> {{ nmap_report }}; echo success"
|
2021-02-03 21:39:24 -06:00
|
|
|
|
|
|
|
- name: General | Tests | nmap | Make Viewable
|
2021-02-03 21:29:45 -06:00
|
|
|
file:
|
2021-02-06 07:16:19 -06:00
|
|
|
path: "{{ nmap_report }}"
|
2021-02-06 07:37:31 -06:00
|
|
|
mode: '0777'
|