mirror of
https://github.com/nmap/nmap.git
synced 2026-08-31 23:40:57 +00:00
Lua 5.2 upgrade [1] for NSE.
[1] http://seclists.org/nmap-dev/2012/q2/34
This commit is contained in:
parent
a839e69449
commit
000f6dc4d9
553 changed files with 13477 additions and 8870 deletions
|
|
@ -7,7 +7,14 @@
|
|||
--
|
||||
-- @author "Patrik Karlsson <patrik@cqure.net>"
|
||||
|
||||
module(... or "mysql", package.seeall)
|
||||
local bin = require "bin"
|
||||
local bit = require "bit"
|
||||
local nmap = require "nmap"
|
||||
local openssl = require "openssl"
|
||||
local stdnse = require "stdnse"
|
||||
local string = require "string"
|
||||
local table = require "table"
|
||||
_ENV = stdnse.module("mysql", stdnse.seeall)
|
||||
|
||||
-- Version 0.3
|
||||
--
|
||||
|
|
@ -567,3 +574,5 @@ function formatResultset(rs, options)
|
|||
|
||||
return tab.dump(restab)
|
||||
end
|
||||
|
||||
return _ENV;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue