Skip to content

Commit 6045385

Browse files
committed
Update README.md
1 parent a491099 commit 6045385

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ ip: <string>
153153
period: <string>
154154
155155
# Range of ports to scan. Supported values:
156-
# all, reserved, 22, 100-1000, 11,12-14,15...
156+
# all, reserved, top1000, 22, 100-1000, 11,12-14,15...
157157
range: <string>
158158
159159
# Ports that are expected to be open. Supported values are the same than
@@ -196,10 +196,18 @@ targets:
196196
period: "1d"
197197
range: "all"
198198
expected: ""
199+
200+
- name: "app3"
201+
ip: "198.51.100.85"
202+
tcp:
203+
period: "3h"
204+
range: "top1000"
205+
expected: "80,443"
199206
```
200207

201-
* `app1` will be scanned using TCP every 12 hours on all the reserved ports (1-1023), and we expect that ports 22, 80, 443 will be open, and all the others closed. It will also receive an ICMP ping every minute. It will send 500 queries per second.
202-
* `app2` will be scanned using TCP every day on all its ports (1-65535), and none of its ports should be open. It will send 1000 queries per second.
208+
- `app1` will be scanned using TCP every 12 hours on all the reserved ports (1-1023), and we expect that ports 22, 80, 443 will be open, and all the others closed. It will also receive an ICMP ping every minute. It will send 500 queries per second.
209+
- `app2` will be scanned using TCP every day on all its ports (1-65535), and none of its ports should be open. It will send 1000 queries per second.
210+
- `app3` will be scanned using TCP every 3 hours on the top 1000 ports (as determined by running the `nmap -sT --top-ports 1000 -v -oG -` command), and we expect that ports 80, 443 will be open, and all the others closed.
203211

204212
In addition, only logs with "warn" level will be displayed.
205213

0 commit comments

Comments
 (0)