From 541e28736003b5e64d8e1375e51d6461d45dbf13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikk=20R=C3=A4tsep?= <34239026+ratsepmikk@users.noreply.github.com> Date: Wed, 27 Dec 2023 00:17:40 +0200 Subject: [PATCH] Flags sre most likely in wrong order for the audit file - It makes more sense for the flag -p (short for 'ports') to be before the port range - It makes more sense for the flags -u or -t (short for 'UDP ports' and 'TCP ports') to be either freely placed where-ever or to be placed before the 'ip_address' argument, but not before the port range argument. This mistake happened only inside the audit questions file, it seems to be fine in the task description file. --- subjects/cybersecurity/active/audit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/cybersecurity/active/audit/README.md b/subjects/cybersecurity/active/audit/README.md index 4bc3452d7..81adb230a 100644 --- a/subjects/cybersecurity/active/audit/README.md +++ b/subjects/cybersecurity/active/audit/README.md @@ -43,11 +43,11 @@ The student must launch his program by passing the IP address of a website as th 5900 VNC 25565 Minecraft -##### Run `tinyscanner -p 127.0.0.1 -t 80` +##### Run `tinyscanner -t 127.0.0.1 -p 80` ###### Does port 80 show as open? -##### Run a local server using udp protocol with the port 8080 and run `tinyscanner -p 127.0.0.1 -u 80` +##### Run a local server using udp protocol with the port 8080 and run `tinyscanner -u 127.0.0.1 -p 80` ###### Does port 80 show as open?