align & portrule

This commit is contained in:
Adrien MALINGREY 2024-10-20 02:19:57 +02:00
parent 523712a4c2
commit 1c12e66a04
2 changed files with 14 additions and 10 deletions

View File

@ -20,12 +20,12 @@ Return status, title and favicon URL of a webpage
--- ---
categories = {"discovery", "intrusive"} categories = {"discovery", "intrusive"}
author = "Adrien Malingrey" author = "Adrien Malingrey"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
portrule = shortport.service({"http", "https", "ssl"}) portrule = shortport.service({"http", "https", "ssl"})
local http = require "http" local http = require "http"
local stdnse = require "stdnse" local stdnse = require "stdnse"
action = function(host, port) action = function(host, port)

View File

@ -1,8 +1,3 @@
local stdnse = require "stdnse"
local smb = require "smb"
local smb2 = require "smb2"
local msrpc = require "msrpc"
local bin = require "bin"
local shortport = require "shortport" local shortport = require "shortport"
description = [[ description = [[
@ -24,11 +19,20 @@ Return free and total size in octets of each SMB shares
--- ---
categories = {"discovery", "intrusive"} categories = {"discovery", "intrusive"}
author = "Adrien Malingrey" author = "Adrien Malingrey"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
hostrule = function(host)
return smb.get_port(host) ~= nil
end
portrule = shortport.service({"microsoft-ds", "netbios-ssn", "smb"}) portrule = shortport.service({"microsoft-ds", "netbios-ssn", "smb"})
local stdnse = require "stdnse"
local smb = require "smb"
local smb2 = require "smb2"
local msrpc = require "msrpc"
local bin = require "bin"
action = function(host) action = function(host)
local status, shares, extra local status, shares, extra