1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-15 04:09:01 +00:00

Add some missing library requires and remove trailing whitespace

This commit is contained in:
dmiller
2018-08-08 18:58:40 +00:00
parent 684803ce30
commit 0c617b26d9
2 changed files with 8 additions and 4 deletions

View File

@@ -2,7 +2,9 @@ local nmap = require "nmap"
local packet = require "packet" local packet = require "packet"
local stdnse = require "stdnse" local stdnse = require "stdnse"
local string = require "string" local string = require "string"
local target = require "target" local target = require "target"
local os = require "os"
local table = require "table"
description = [[ description = [[
Discovers HID devices on a LAN by sending a discoveryd network broadcast probe. Discovers HID devices on a LAN by sending a discoveryd network broadcast probe.
@@ -18,7 +20,7 @@ For more information about HID discoveryd, see:
-- --
-- @output -- @output
-- Pre-scan script results: -- Pre-scan script results:
-- | broadcast-hid-discoveryd: -- | broadcast-hid-discoveryd:
-- | MAC: 00:06:8E:00:00:00; Name: NoEntry; IP Address: 10.123.123.1; Model: EH400; Version: 2.3.1.603 (04/23/2012) -- | MAC: 00:06:8E:00:00:00; Name: NoEntry; IP Address: 10.123.123.1; Model: EH400; Version: 2.3.1.603 (04/23/2012)
-- | MAC: 00:06:8E:FF:FF:FF; Name: NoExit; IP Address: 10.123.123.123; Model: EH400; Version: 2.3.1.603 (04/23/2012) -- | MAC: 00:06:8E:FF:FF:FF; Name: NoExit; IP Address: 10.123.123.123; Model: EH400; Version: 2.3.1.603 (04/23/2012)
-- |_ Use --script-args=newtargets to add the results as targets -- |_ Use --script-args=newtargets to add the results as targets
@@ -71,7 +73,7 @@ action = function()
local str = ("MAC: %s; Name: %s; IP Address: %s; Model: %s; Version: %s (%s)"):format( local str = ("MAC: %s; Name: %s; IP Address: %s; Model: %s; Version: %s (%s)"):format(
hid_data[3], hid_data[4], hid_data[5], hid_data[7], hid_data[8], hid_data[9]) hid_data[3], hid_data[4], hid_data[5], hid_data[7], hid_data[8], hid_data[9])
table.insert( results, str ) table.insert( results, str )
if target.ALLOW_NEW_TARGETS then if target.ALLOW_NEW_TARGETS then
target.add(hid_data[5]) target.add(hid_data[5])
end end
end end

View File

@@ -2,6 +2,8 @@ local nmap = require "nmap"
local packet = require "packet" local packet = require "packet"
local stdnse = require "stdnse" local stdnse = require "stdnse"
local string = require "string" local string = require "string"
local os = require "os"
local table = require "table"
description = [[ description = [[
Discovers Jenkins servers on a LAN by sending a discovery broadcast probe. Discovers Jenkins servers on a LAN by sending a discovery broadcast probe.
@@ -16,7 +18,7 @@ For more information about Jenkins auto discovery, see:
-- --
-- @output -- @output
-- Pre-scan script results: -- Pre-scan script results:
-- | broadcast-jenkins: -- | broadcast-jenkins:
-- | Version: 2.60.2; Server ID: d5e31b7a9d69cf3c89cc799c23199760; Slave Port: 35928 -- | Version: 2.60.2; Server ID: d5e31b7a9d69cf3c89cc799c23199760; Slave Port: 35928
-- |_ Version: 2.60.2; Server ID: b98e8e1b862c3eecb14e8be0028cf4ee; Slave Port: 45435 -- |_ Version: 2.60.2; Server ID: b98e8e1b862c3eecb14e8be0028cf4ee; Slave Port: 45435
-- --