diff --git a/README.md b/README.md index 7ed0f58..f139f73 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ $ nmap -thc **3.iii. Alert on new TCP connections** -Make a *bing*-noise (ascii BEL) when anyone tries to SSH to/from our system (could be an admin!). +Make a *bing*-noise (ascii BEL) when anyone tries to SSH to/from the target system (could be an admin!). ``` # tcpdump -nlq "tcp[13] == 2 and dst port 22" | while read x; do echo "${x}"; echo -en \\a; done