From 193e5750ef8f980b8a13a1d464052707180db3f7 Mon Sep 17 00:00:00 2001 From: rootTHC <57636391+rootTHC@users.noreply.github.com> Date: Fri, 24 Jan 2020 15:10:53 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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