From 0d47952611198ef6b1163f366dc03922d20b1475 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 09:42:04 +0200 Subject: Adding upstream version 7.94+git20230807.3be01efb1+dfsg. Signed-off-by: Daniel Baumann --- scripts/daytime.nse | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 scripts/daytime.nse (limited to 'scripts/daytime.nse') diff --git a/scripts/daytime.nse b/scripts/daytime.nse new file mode 100644 index 0000000..bc8fb2f --- /dev/null +++ b/scripts/daytime.nse @@ -0,0 +1,26 @@ +local comm = require "comm" +local shortport = require "shortport" +local oops = require "oops" + +description = [[ +Retrieves the day and time from the Daytime service. +]] + +--- +-- @output +-- PORT STATE SERVICE +-- 13/tcp open daytime +-- |_daytime: Wed Mar 31 14:48:58 MDT 2010 + +author = "Diman Todorov" + +license = "Same as Nmap--See https://nmap.org/book/man-legal.html" + +categories = {"discovery", "safe"} + + +portrule = shortport.port_or_service(13, "daytime", {"tcp", "udp"}) + +action = function(host, port) + return oops.output(comm.exchange(host, port, "dummy", {lines=1})) +end -- cgit v1.2.3