1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 21:59:02 +00:00

Remove unneeded requires

This commit is contained in:
dmiller
2018-08-27 22:00:14 +00:00
parent 71cc60d68c
commit 199c844d8a
7 changed files with 5 additions and 11 deletions

View File

@@ -1,5 +1,4 @@
local nmap = require "nmap"
local packet = require "packet"
local stdnse = require "stdnse"
local string = require "string"
local target = require "target"

View File

@@ -1,5 +1,4 @@
local nmap = require "nmap"
local packet = require "packet"
local stdnse = require "stdnse"
local string = require "string"
local os = require "os"

View File

@@ -44,14 +44,12 @@ license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = {"external", "discovery"}
local ipOps = require "ipOps"
local io = require "io"
local http = require "http"
local stdnse = require "stdnse"
local string = require "string"
local target = require "target"
local table = require "table"
local shortport = require "shortport"
-- Different from stdnse.get_hostname
-- this function returns nil if the host is only known by IP address

View File

@@ -1,4 +1,3 @@
local comm = require "comm"
local coroutine = require "coroutine"
local math = require "math"
local nmap = require "nmap"