Library bin
Pack and unpack binary data.
THIS LIBRARY IS DEPRECATED! Please use builtin Lua 5.3 string.pack facilities.
A problem script authors often face is the necessity of encoding values into binary data. For example after analyzing a protocol the starting point to write a script could be a hex dump, which serves as a preamble to every sent packet. Prior to Lua 5.3, NSE included a bin library, based on lpack (http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/) by Luiz Henrique de Figueiredo. This library is now reimplemented using Lua 5.3 string.pack facilities. New scripts and libraries should adopt Lua 5.3's native string.pack.
The Binlib functions take a format string to encode and decode binary data. Packing and unpacking are controlled by the following operator characters:
H
hex stringx
null bytez
zero-terminated stringp
string preceded by 1-byte integer lengthP
string preceded by 2-byte integer lengtha
string preceded by 4-byte integer lengthA
stringf
floatd
doublen
Lua numberc
char (1-byte integer)C
byte = unsigned char (1-byte unsigned integer)s
short (2-byte integer)S
unsigned short (2-byte unsigned integer)i
int (4-byte integer)I
unsigned int (4-byte unsigned integer)l
long (8-byte integer)L
unsigned long (8-byte unsigned integer)<
little endian modifier>
big endian modifier=
native endian modifier
Note that the endian operators work as modifiers to all the characters following them in the format string.
Source: https://svn.nmap.org/nmap/nselib/bin.lua
Functions
- _ENV.pack (format, ...)
Returns a binary packed string.
- _ENV.unpack (format, data, init)
Returns values read from the binary packed data string.
Functions
- _ENV.pack (format, ...)
-
Returns a binary packed string.
The format string describes how the parameters (
p1
,...
) will be interpreted. Numerical values following operators stand for operator repetitions and need an according amount of parameters. Operators expect appropriate parameter types.Note: on Windows packing of 64-bit values > 2^63 currently results in packing exactly 2^63.
Parameters
- format
- Format string, used to pack following arguments.
- ...
- The values to pack.
Return value:
String containing packed data. - _ENV.unpack (format, data, init)
-
Returns values read from the binary packed data string.
The first return value of this function is the position at which unpacking stopped. This can be used as the
init
value for subsequent calls. The following return values are the values according to the format string. Numerical values in the format string are interpreted as repetitions like inpack
, except if used withA
,B
, orH
, in which cases the number tellsunpack
how many bytes to read.unpack
stops if either the format string or the binary data string are exhausted.Parameters
- format
- Format string, used to unpack values out of data string.
- data
- String containing packed data.
- init
- Optional starting position within the string.
Return values:
- Position in the data string where unpacking stopped.
- All unpacked values.