mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 11:49:01 +00:00
I made every script follow a standard form: it starts with the id, followed by the description. The description is contained in [[ ]] delimiters. The description is in the global description variable, not in a LuaDoc comment. Other LuaDoc information such as @args and @usage follows the description in a comment. The first paragraph of each description is a a short summary of what the script does. More detailed information, if any, is given in following paragraphs. I also improved some wording and formatting in a few cases.
32 lines
591 B
Lua
32 lines
591 B
Lua
id = "SMTP version"
|
|
description = [[
|
|
Prints the version of an SMTP server.
|
|
]]
|
|
|
|
---
|
|
-- @output
|
|
-- 25/tcp open smtp\n
|
|
-- |_ SMTP version: 220 mail.foo.com mx-2.bar.com ESMTP Exim 4.64\n
|
|
|
|
author = "Diman Todorov <diman.todorov@gmail.com>"
|
|
|
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
|
|
|
categories = {"demo"}
|
|
|
|
require "comm"
|
|
require "shortport"
|
|
|
|
portrule = shortport.port_or_service(25, "smtp")
|
|
|
|
action = function(host, port)
|
|
local status, result = comm.get_banner(host, port, {lines=1})
|
|
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
return (string.gsub(result, "\r?\n", ""))
|
|
end
|
|
|