Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/nmap/scripts/ |
Upload File : |
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