mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 03:48:14 +00:00
Officially deprecate bin.lua.
This commit is contained in:
parent
be2910ae6f
commit
173a99ede4
3 changed files with 7 additions and 1 deletions
|
|
@ -1,5 +1,10 @@
|
|||
#Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] bin.lua is officially deprecated. Lua 5.3, added 2 years ago in Nmap
|
||||
7.25BETA2, has native support for binary data packing via string.pack and
|
||||
string.unpack. All existing scripts and libraries have been updated.
|
||||
[Daniel Miller]
|
||||
|
||||
o [NSE] tls.lua when creating a client_hello message will now only use a SSLv3
|
||||
record layer if the protocol version is SSLv3. Some TLS implementations will
|
||||
not handshake with a client offering less than TLSv1.0. Scripts will have to
|
||||
|
|
|
|||
|
|
@ -44,6 +44,8 @@
|
|||
|
||||
local debug4 = require "stdnse".debug4
|
||||
local debug5 = require "stdnse".debug5
|
||||
local verbose = require "stdnse".verbose
|
||||
verbose(0, "DEPRECATION WARNING: bin.lua is deprecated. Please use Lua 5.3 string.pack")
|
||||
|
||||
local assert = assert
|
||||
local error = error
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ local libs = {
|
|||
"asn1",
|
||||
"base32",
|
||||
"base64",
|
||||
"bin",
|
||||
"bitcoin",
|
||||
"bits",
|
||||
"bittorrent",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue