1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 17:59:04 +00:00

Move string utility functions to stringaux.lua

This commit is contained in:
dmiller
2018-10-18 01:08:19 +00:00
parent 39cfbdf4e2
commit 0500811f5a
140 changed files with 521 additions and 418 deletions

View File

@@ -3,6 +3,7 @@ local nmap = require "nmap"
local stdnse = require "stdnse"
local tab = require "tab"
local target = require "target"
local table = require "table"
description = [[
Listens for the LAN sync information broadcasts that the Dropbox.com client
@@ -113,9 +114,9 @@ action = function()
info.displayname,
ip,
info.port,
stdnse.strjoin(".", info.version),
table.concat(info.version, "."),
info.host_int,
stdnse.strjoin(", ", info.namespaces)
table.concat(info.namespaces, ", ")
)
stdnse.debug1("Added host %s.", info.displayname)