1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 04:39:03 +00:00

Change nmap.luadoc to use Unix line endings.

This commit is contained in:
david
2008-10-21 22:35:10 +00:00
parent eb5a40dc81
commit 20137202d9

View File

@@ -1,444 +1,444 @@
--- Interface with Nmap internals. --- Interface with Nmap internals.
-- \n\n -- \n\n
-- The nmap module is an interface with Nmap's internal functions and data -- The nmap module is an interface with Nmap's internal functions and data
-- structures. The API provides target host details such as port states and -- structures. The API provides target host details such as port states and
-- version detection results. It also offers an interface to the Nsock library -- version detection results. It also offers an interface to the Nsock library
-- for efficient network I/O. -- for efficient network I/O.
module "nmap" module "nmap"
--- Returns the debugging level as a non-negative integer. --- Returns the debugging level as a non-negative integer.
-- \n\n -- \n\n
-- The debugging level can be set with the -d option. -- The debugging level can be set with the -d option.
-- @return The debugging level. -- @return The debugging level.
-- @usage if nmap.debugging() > 0 then ... end -- @usage if nmap.debugging() > 0 then ... end
function nmap.debugging() function nmap.debugging()
--- Determines whether Nmap was compiled with SSL support. --- Determines whether Nmap was compiled with SSL support.
-- \n\n -- \n\n
-- This can be used to avoid sending SSL probes when SSL is not available. -- This can be used to avoid sending SSL probes when SSL is not available.
-- @return true if Nmap was compiled with SSL support, false otherwise. -- @return true if Nmap was compiled with SSL support, false otherwise.
function nmap.have_ssl() function nmap.have_ssl()
--- Returns the verbosity level as a non-negative integer. --- Returns the verbosity level as a non-negative integer.
-- \n\n -- \n\n
-- The verbosity level can be set with the -v option. -- The verbosity level can be set with the -v option.
-- @return The verbosity level. -- @return The verbosity level.
-- @usage if nmap.verbosity() > 0 then ... end -- @usage if nmap.verbosity() > 0 then ... end
function nmap.verbosity() function nmap.verbosity()
--- Searches for the specified file and returns a string containing its path if --- Searches for the specified file and returns a string containing its path if
-- it is found and readable (to the process). -- it is found and readable (to the process).
-- \n\n -- \n\n
-- If the file is not found, not readable, or is a directory, nil is returned. -- If the file is not found, not readable, or is a directory, nil is returned.
-- The call nmap.fetchfile("nmap-rpc") will search for the data file nmap-rpc -- The call nmap.fetchfile("nmap-rpc") will search for the data file nmap-rpc
-- and, assuming it's found (which it should be), return a string like -- and, assuming it's found (which it should be), return a string like
-- "/usr/local/share/nmap/nmap-rpc". -- "/usr/local/share/nmap/nmap-rpc".
-- @param filename Filename to search for. -- @param filename Filename to search for.
-- @return String representing the full path to the file or nil. -- @return String representing the full path to the file or nil.
function nmap.fetchfile(filename) function nmap.fetchfile(filename)
--- Returns the timing level as a non-negative integer. Possible return values --- Returns the timing level as a non-negative integer. Possible return values
-- vary from 0 to 5, corresponding to the six built-in Nmap timing templates. -- vary from 0 to 5, corresponding to the six built-in Nmap timing templates.
-- The timing level can be set with the -T option. -- The timing level can be set with the -T option.
-- @return The timing level. -- @return The timing level.
function nmap.timing_level() function nmap.timing_level()
--- Gets a port table for a port on a given host. --- Gets a port table for a port on a given host.
-- \n\n -- \n\n
-- This function takes a host table and a port table and returns a port table -- This function takes a host table and a port table and returns a port table
-- for the queried port. The port table returned is similar in structure to the -- for the queried port. The port table returned is similar in structure to the
-- ones passed to the rule and action functions. -- ones passed to the rule and action functions.
-- \n\n -- \n\n
-- You can of course reuse the host and port tables passed to the port rule -- You can of course reuse the host and port tables passed to the port rule
-- function. The purpose of this call is to be able to match scripts against -- function. The purpose of this call is to be able to match scripts against
-- more than one open port. For example if the target host has an open port 22 -- more than one open port. For example if the target host has an open port 22
-- and a running identd server, then you can write a script which will only fire -- and a running identd server, then you can write a script which will only fire
-- if both ports are open and there is an identification server on port 113. -- if both ports are open and there is an identification server on port 113.
-- While it is possible to specify IP addresses different to the currently -- While it is possible to specify IP addresses different to the currently
-- scanned target, the result will only be correct if the target is in the -- scanned target, the result will only be correct if the target is in the
-- currently scanned group of hosts. -- currently scanned group of hosts.
-- @param host Host table, containing an "ip" field. -- @param host Host table, containing an "ip" field.
-- @param port Port table, containing "number" and "protocol" fields. -- @param port Port table, containing "number" and "protocol" fields.
-- @param protocol Protocol string ("tcp" or "udp") -- @param protocol Protocol string ("tcp" or "udp")
-- @return A new port table holding the status and information for the port. -- @return A new port table holding the status and information for the port.
-- @usage p = nmap.get_port_state({ip="127.0.0.1"}, {number="80", protocol="tcp"}) -- @usage p = nmap.get_port_state({ip="127.0.0.1"}, {number="80", protocol="tcp"})
function nmap.get_port_state(host, port) function nmap.get_port_state(host, port)
--- Sets the state of a port on a given host. --- Sets the state of a port on a given host.
-- \n\n -- \n\n
-- Using this function, the final port state, reflected in Nmap's results, -- Using this function, the final port state, reflected in Nmap's results,
-- can be changed for a target. This is useful when Nmap detects a port as -- can be changed for a target. This is useful when Nmap detects a port as
-- "open|filtered", but the script successfully connects to that port. In this -- "open|filtered", but the script successfully connects to that port. In this
-- case, the script can set the port state to "open". Note that the port.state -- case, the script can set the port state to "open". Note that the port.state
-- value, which is passed to the script's action function will not be changed by -- value, which is passed to the script's action function will not be changed by
-- this call. -- this call.
-- @param host Host table, containing an "ip" field. -- @param host Host table, containing an "ip" field.
-- @param port Port table, containing "number" and "protocol" fields. -- @param port Port table, containing "number" and "protocol" fields.
-- @param state Port state, like "open" or "closed". -- @param state Port state, like "open" or "closed".
function nmap.set_port_state(host, port, state) function nmap.set_port_state(host, port, state)
--- Sets version information on a port. --- Sets version information on a port.
-- \n\n -- \n\n
-- NSE scripts are sometimes able to determine the service name and application -- NSE scripts are sometimes able to determine the service name and application
-- version listening on a port. A whole script category (version) was designed -- version listening on a port. A whole script category (version) was designed
-- for this purpose. set_port_version function is used to record version -- for this purpose. set_port_version function is used to record version
-- information when it is discovered. -- information when it is discovered.
-- \n\n -- \n\n
-- The host and port arguments to this function should either be the tables -- The host and port arguments to this function should either be the tables
-- passed to the action method or they should have the same structure. The port -- passed to the action method or they should have the same structure. The port
-- argument specifies the port to operate on through its "number" and "protocol" -- argument specifies the port to operate on through its "number" and "protocol"
-- fields. and also contains the new version information to set. The version -- fields. and also contains the new version information to set. The version
-- detection fields this function looks at are "name", "product", "version", -- detection fields this function looks at are "name", "product", "version",
-- "extrainfo", "hostname", "ostype", "devicetype", and "service_tunnel". All -- "extrainfo", "hostname", "ostype", "devicetype", and "service_tunnel". All
-- these keys are optional. -- these keys are optional.
-- \n\n -- \n\n
-- The probestate argument describes the state in which the script completed. It -- The probestate argument describes the state in which the script completed. It
-- is a string, one of: "hardmatched", "softmatched", "nomatch", "tcpwrapped", -- is a string, one of: "hardmatched", "softmatched", "nomatch", "tcpwrapped",
-- or "incomplete". "hardmatched" is almost always used, as it signifies a -- or "incomplete". "hardmatched" is almost always used, as it signifies a
-- successful match. The other possible states are generally only used for -- successful match. The other possible states are generally only used for
-- standard version detection rather than the NSE enhancement. -- standard version detection rather than the NSE enhancement.
-- @param host Host table, containing and "ip" field. -- @param host Host table, containing and "ip" field.
-- @param port Port table, containing "number" and "protocol" fields, as well as -- @param port Port table, containing "number" and "protocol" fields, as well as
-- any additional version information fields. -- any additional version information fields.
-- @param probestate The state of the probe: "hardmatched", "softmatched", -- @param probestate The state of the probe: "hardmatched", "softmatched",
-- "nomatch", "tcpwrapped", or "incomplete". -- "nomatch", "tcpwrapped", or "incomplete".
function nmap.set_port_version(host, port, probestate) function nmap.set_port_version(host, port, probestate)
--- Returns the current date and time in milliseconds. --- Returns the current date and time in milliseconds.
-- @return The number of milliseconds since the epoch (on most systems this is -- @return The number of milliseconds since the epoch (on most systems this is
-- 01/01/1970). -- 01/01/1970).
function nmap.clock_ms() function nmap.clock_ms()
--- Gets the link-level hardware type of an interface. --- Gets the link-level hardware type of an interface.
-- \n\n -- \n\n
-- This function takes a dnet-style interface name and returns a string -- This function takes a dnet-style interface name and returns a string
-- representing the hardware type of the interface. Possible return values are -- representing the hardware type of the interface. Possible return values are
-- "ethernet", "loopback", "p2p", or nil if none of the other types apply. -- "ethernet", "loopback", "p2p", or nil if none of the other types apply.
-- @param interface_name The name of the interface. -- @param interface_name The name of the interface.
-- @return "ethernet", "loopback", "p2p", or nil. -- @return "ethernet", "loopback", "p2p", or nil.
function nmap.get_interface_link(interface_name) function nmap.get_interface_link(interface_name)
--- Create a mutex on an object. --- Create a mutex on an object.
-- \n\n -- \n\n
-- This function returns another function that works as a mutex on the object -- This function returns another function that works as a mutex on the object
-- passed. This object can be any Lua data type except nil, booleans, and -- passed. This object can be any Lua data type except nil, booleans, and
-- numbers. The returned function allows you to lock, try to lock, and release -- numbers. The returned function allows you to lock, try to lock, and release
-- the mutex. The returned function takes only one argument, which must be one -- the mutex. The returned function takes only one argument, which must be one
-- of\n -- of\n
-- "lock": makes a blocking lock on the mutex. If the mutex is busy then -- "lock": makes a blocking lock on the mutex. If the mutex is busy then
-- the thread will yield and wait. The function returns with the mutex locked.\n -- the thread will yield and wait. The function returns with the mutex locked.\n
-- "trylock": makes a non-blocking lock on the mutex. If the mutex is -- "trylock": makes a non-blocking lock on the mutex. If the mutex is
-- busy then it immediately returns with a return value of false. Otherwise, -- busy then it immediately returns with a return value of false. Otherwise,
-- the mutex locks the mutex and returns true.\n -- the mutex locks the mutex and returns true.\n
-- "done": releases the mutex and allows another thread to lock it. If -- "done": releases the mutex and allows another thread to lock it. If
-- the thread does not have a lock on the mutex, an error will be raised.\n -- the thread does not have a lock on the mutex, an error will be raised.\n
-- "running": returns the thread locked on the mutex or nil if no thread -- "running": returns the thread locked on the mutex or nil if no thread
-- is locked. This should only be used for debugging as it interferes with -- is locked. This should only be used for debugging as it interferes with
-- finished threads from being collected. -- finished threads from being collected.
-- @param object Object to create a mutex for. -- @param object Object to create a mutex for.
-- @return Mutex function which takes one of the following arguments: "lock", -- @return Mutex function which takes one of the following arguments: "lock",
-- "trylock", "done", or "running". -- "trylock", "done", or "running".
-- @usage -- @usage
-- id = "My Script's Unique ID";\n -- id = "My Script's Unique ID";\n
-- \n -- \n
-- local mutex = nmap.mutex(id);\n -- local mutex = nmap.mutex(id);\n
-- function action(host, port)\n -- function action(host, port)\n
-- mutex "lock";\n -- mutex "lock";\n
-- -- do stuff\n -- -- do stuff\n
-- mutex "done";\n -- mutex "done";\n
-- return script_output;\n -- return script_output;\n
-- end -- end
function nmap.mutex(object) function nmap.mutex(object)
--- Creates a new exception handler. --- Creates a new exception handler.
-- \n\n -- \n\n
-- This function returns another function, an exception handler. The returned -- This function returns another function, an exception handler. The returned
-- function takes a variable number of arguments, which are assumed to be the -- function takes a variable number of arguments, which are assumed to be the
-- return values of another function. It checks the return values for an -- return values of another function. It checks the return values for an
-- exception, which is signalled when the first return value is false. If there -- exception, which is signalled when the first return value is false. If there
-- is an exception, the script will stop immediately and produce no output. An -- is an exception, the script will stop immediately and produce no output. An
-- optional handler function can be called before the script is stopped. In the -- optional handler function can be called before the script is stopped. In the
-- error handler function you can perform any clean-up operations, such as -- error handler function you can perform any clean-up operations, such as
-- closing a socket. -- closing a socket.
-- @param handler Exception handler function (optional). -- @param handler Exception handler function (optional).
-- @usage -- @usage
-- local result, socket, try, catch\n -- local result, socket, try, catch\n
-- \n -- \n
-- result = ""\n -- result = ""\n
-- socket = nmap.new_socket()\n -- socket = nmap.new_socket()\n
-- catch = function()\n -- catch = function()\n
-- socket:close()\n -- socket:close()\n
-- end\n -- end\n
-- try = nmap.new_try(catch)\n -- try = nmap.new_try(catch)\n
-- try(socket:connect(host.ip, port.number))\n -- try(socket:connect(host.ip, port.number))\n
-- result = try(socket:receive_lines(1))\n -- result = try(socket:receive_lines(1))\n
-- try(socket:send(result)) -- try(socket:send(result))
function nmap.new_try(handler) function nmap.new_try(handler)
--- Returns a new NSE socket object. --- Returns a new NSE socket object.
-- \n\n -- \n\n
-- To allow for efficient and parallelizable network I/O, NSE provides an -- To allow for efficient and parallelizable network I/O, NSE provides an
-- interface to Nsock, the Nmap socket library. The smart callback mechanism -- interface to Nsock, the Nmap socket library. The smart callback mechanism
-- Nsock uses is fully transparent to NSE scripts. The main benefit of NSE's -- Nsock uses is fully transparent to NSE scripts. The main benefit of NSE's
-- sockets is that they never block on I/O operations, allowing many scripts to -- sockets is that they never block on I/O operations, allowing many scripts to
-- be run in parallel. The I/O parallelism is fully transparent to authors of -- be run in parallel. The I/O parallelism is fully transparent to authors of
-- NSE scripts. In NSE you can either program as if you were using a single non -- NSE scripts. In NSE you can either program as if you were using a single non
-- blocking socket or you can program as if your connection is blocking. -- blocking socket or you can program as if your connection is blocking.
-- Seemingly blocking I/O calls still return once a specified timeout has been -- Seemingly blocking I/O calls still return once a specified timeout has been
-- exceeded. -- exceeded.
-- \n\n -- \n\n
-- NSE sockets are the recommended way to do network I/O. They support -- NSE sockets are the recommended way to do network I/O. They support
-- connect-style sending and receiving over TCP and UDP (and SSL), as well as -- connect-style sending and receiving over TCP and UDP (and SSL), as well as
-- raw socket receiving. -- raw socket receiving.
-- @return A new NSE socket. -- @return A new NSE socket.
-- @see nmap.new_dnet -- @see nmap.new_dnet
function nmap.new_socket() function nmap.new_socket()
--- Establishes a connection. --- Establishes a connection.
-- \n\n -- \n\n
-- The connect puts a socket in a state ready for communication. It takes as -- The connect puts a socket in a state ready for communication. It takes as
-- arguments a host descriptor (either an IP address or a hostname), a port -- arguments a host descriptor (either an IP address or a hostname), a port
-- number and optionally a protocol. The protocol must be one of "tcp", "udp" or -- number and optionally a protocol. The protocol must be one of "tcp", "udp" or
-- "ssl"; it is "tcp" if not specified. -- "ssl"; it is "tcp" if not specified.
-- \n\n -- \n\n
-- On success the function returns true. On failure it returns false and an -- On success the function returns true. On failure it returns false and an
-- error string. Those strings are taken from the gai_strerror C function. They -- error string. Those strings are taken from the gai_strerror C function. They
-- are (with the error code in parentheses):\n -- are (with the error code in parentheses):\n
-- "Address family for hostname not supported" (EAI_ADDRFAMILY)\n -- "Address family for hostname not supported" (EAI_ADDRFAMILY)\n
-- "Temporary failure in name resolution" (EAI_AGAIN)\n -- "Temporary failure in name resolution" (EAI_AGAIN)\n
-- "Bad value for ai_flags" (EAI_BADFLAGS)\n -- "Bad value for ai_flags" (EAI_BADFLAGS)\n
-- "Non-recoverable failure in name resolution" (EAI_FAIL)\n -- "Non-recoverable failure in name resolution" (EAI_FAIL)\n
-- "ai_family not supported" (EAI_FAMILY)\n -- "ai_family not supported" (EAI_FAMILY)\n
-- "Memory allocation failure" (EAI_MEMORY)\n -- "Memory allocation failure" (EAI_MEMORY)\n
-- "No address associated with hostname" (EAI_NODATA)\n -- "No address associated with hostname" (EAI_NODATA)\n
-- "Name or service not known" (EAI_NONAME)\n -- "Name or service not known" (EAI_NONAME)\n
-- "Servname not supported for ai_socktype" (EAI_SERVICE)\n -- "Servname not supported for ai_socktype" (EAI_SERVICE)\n
-- "ai_socktype not supported" (EAI_SOCKTYPE)\n -- "ai_socktype not supported" (EAI_SOCKTYPE)\n
-- "System error" (EAI_SYSTEM)\n -- "System error" (EAI_SYSTEM)\n
-- In addition to these standard system error based messages are the following -- In addition to these standard system error based messages are the following
-- two NSE-specific errors:\n -- two NSE-specific errors:\n
-- "Sorry, you don't have OpenSSL" occurs if the protocol is "ssl" but but Nmap -- "Sorry, you don't have OpenSSL" occurs if the protocol is "ssl" but but Nmap
-- was compiled without OpenSSL support.\n -- was compiled without OpenSSL support.\n
-- "invalid connection method" occurs if the second parameter is not one of -- "invalid connection method" occurs if the second parameter is not one of
-- "tcp", "udp", and "ssl". -- "tcp", "udp", and "ssl".
-- @param hostid Hostname or IP address. -- @param hostid Hostname or IP address.
-- @param port Port number. -- @param port Port number.
-- @param protocol "tcp", "udp", or "ssl" (default "tcp"). -- @param protocol "tcp", "udp", or "ssl" (default "tcp").
-- @return Status (true or false). -- @return Status (true or false).
-- @return Error code (if status is false). -- @return Error code (if status is false).
function socket:connect(hostid, port, protocol) function socket:connect(hostid, port, protocol)
--- Sends data on an open socket. --- Sends data on an open socket.
-- \n\n -- \n\n
-- The send method sends the data contained in the data string through an open -- The send method sends the data contained in the data string through an open
-- connection. On success the returns true. If the send -- connection. On success the returns true. If the send
-- operation has failed, the function returns true along with an error string. -- operation has failed, the function returns true along with an error string.
-- The error strings are:\n -- The error strings are:\n
-- "Trying to send through a closed socket": there was no call to socket:connect -- "Trying to send through a closed socket": there was no call to socket:connect
-- before the send operation.\n -- before the send operation.\n
-- "TIMEOUT": the operation took longer than the specified timeout for the -- "TIMEOUT": the operation took longer than the specified timeout for the
-- socket.\n -- socket.\n
-- "ERROR": an error occurred inside the underlying Nsock library.\n -- "ERROR": an error occurred inside the underlying Nsock library.\n
-- "CANCELLED": the operation was cancelled.\n -- "CANCELLED": the operation was cancelled.\n
-- "KILL": for example the script scan is aborted due to a faulty script.\n -- "KILL": for example the script scan is aborted due to a faulty script.\n
-- "EOF": an EOF was read (probably will not occur for a send operation).\n -- "EOF": an EOF was read (probably will not occur for a send operation).\n
-- @param data The data to send. -- @param data The data to send.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Error code (if status is false). -- @return Error code (if status is false).
function socket:send(data) function socket:send(data)
--- Receives data from an open socket. --- Receives data from an open socket.
-- \n\n -- \n\n
-- The receive method does a non-blocking receive operation on an open socket. -- The receive method does a non-blocking receive operation on an open socket.
-- On success the function returns true along with the received data. If -- On success the function returns true along with the received data. If
-- receiving data has failed, the function returns false along with an error -- receiving data has failed, the function returns false along with an error
-- string. A failure occurs for example if receive is called on a closed socket. -- string. A failure occurs for example if receive is called on a closed socket.
-- The receive call returns to the NSE script all the data currently stored in -- The receive call returns to the NSE script all the data currently stored in
-- the receive buffer of the socket. Error conditions are the same as for the -- the receive buffer of the socket. Error conditions are the same as for the
-- send operation. -- send operation.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Data (if status is true) or error string (if status is false). -- @return Data (if status is true) or error string (if status is false).
function socket:receive() function socket:receive()
--- Receives lines from an open connection. --- Receives lines from an open connection.
-- \n\n -- \n\n
-- Tries to receive at least n lines from an open connection. A line is a string -- Tries to receive at least n lines from an open connection. A line is a string
-- delimited with \n characters. If it was not possible to receive at least n -- delimited with \n characters. If it was not possible to receive at least n
-- lines before the operation times out a "TIMEOUT" error occurs. On the other -- lines before the operation times out a "TIMEOUT" error occurs. On the other
-- hand, if more than n lines were received, all are returned, not just n. Use -- hand, if more than n lines were received, all are returned, not just n. Use
-- stdnse.make_buffer to guarantee one line is returned per call. -- stdnse.make_buffer to guarantee one line is returned per call.
-- \n\n -- \n\n
-- On success the function returns true along with the received data. If -- On success the function returns true along with the received data. If
-- receiving data has failed, the function returns false along with an error -- receiving data has failed, the function returns false along with an error
-- string. Error conditions are the same as for the send operation. -- string. Error conditions are the same as for the send operation.
-- @param n Minimum number of lines to read. -- @param n Minimum number of lines to read.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Data (if status is true) or error string (if status is false). -- @return Data (if status is true) or error string (if status is false).
function socket:receive_lines(n) function socket:receive_lines(n)
--- Receives bytes from an open connection. --- Receives bytes from an open connection.
-- \n\n -- \n\n
-- Tries to receive at least n bytes from an open connection. Like in -- Tries to receive at least n bytes from an open connection. Like in
-- receive_lines, n is the minimum amount of characters we would like to -- receive_lines, n is the minimum amount of characters we would like to
-- receive. If more arrive, we get all of them. If fewer than n characters -- receive. If more arrive, we get all of them. If fewer than n characters
-- arrive before the operation times out, a "TIMEOUT" error occurs. -- arrive before the operation times out, a "TIMEOUT" error occurs.
-- \n\n -- \n\n
-- On success the function returns true along with the received data. If -- On success the function returns true along with the received data. If
-- receiving data has failed, the function returns false along with an error -- receiving data has failed, the function returns false along with an error
-- string. Error conditions are the same as for the send operation. -- string. Error conditions are the same as for the send operation.
-- @param n Minimum number of bytes to read. -- @param n Minimum number of bytes to read.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Data (if status is true) or error string (if status is false). -- @return Data (if status is true) or error string (if status is false).
function socket:receive_bytes(n) function socket:receive_bytes(n)
--- Reads from a socket using a buffer and an arbitrary delimiter. --- Reads from a socket using a buffer and an arbitrary delimiter.
-- \n\n -- \n\n
-- The receive_buf method reads data from the network until it encounters the -- The receive_buf method reads data from the network until it encounters the
-- given delimiter string (or matches the function passed in). This function -- given delimiter string (or matches the function passed in). This function
-- continues to read from the network until the delimiter is found or the -- continues to read from the network until the delimiter is found or the
-- function times out. If data is read beyond the delimiter, that data is saved -- function times out. If data is read beyond the delimiter, that data is saved
-- in a buffer for the next call to receive_buf. This buffer is cleared on -- in a buffer for the next call to receive_buf. This buffer is cleared on
-- subsequent calls to other Network I/O API functions. -- subsequent calls to other Network I/O API functions.
-- \n\n -- \n\n
-- The first argument may be either a pattern or a function. If a pattern, that -- The first argument may be either a pattern or a function. If a pattern, that
-- pattern is used to separate the data. If a function, it must take exactly one -- pattern is used to separate the data. If a function, it must take exactly one
-- parameter (the buffer) and its return values must be in the same format as -- parameter (the buffer) and its return values must be in the same format as
-- string.find (offsets to the start and the end of the delimiter inside the -- string.find (offsets to the start and the end of the delimiter inside the
-- buffer, or nil if the delimiter is not found). The nselib match.lua module -- buffer, or nil if the delimiter is not found). The nselib match.lua module
-- provides functions for matching against regular expressions or byte counts. -- provides functions for matching against regular expressions or byte counts.
-- These functions are suitable as arguments to receive_buf. -- These functions are suitable as arguments to receive_buf.
-- \n\n -- \n\n
-- The second argument to receive_buf is a Boolean value controlling whether the -- The second argument to receive_buf is a Boolean value controlling whether the
-- delimiting string is returned along with the received data (true) or -- delimiting string is returned along with the received data (true) or
-- discarded (false). -- discarded (false).
-- \n\n -- \n\n
-- On success the function returns true along with the received data. If -- On success the function returns true along with the received data. If
-- receiving data has failed, the function returns false along with an error -- receiving data has failed, the function returns false along with an error
-- string. Possible error messages are the same as those that the other receive -- string. Possible error messages are the same as those that the other receive
-- function can return, with the addition of\n -- function can return, with the addition of\n
-- "Error inside splitting-function": the first argument was a function which -- "Error inside splitting-function": the first argument was a function which
-- caused an error while being called.\n -- caused an error while being called.\n
-- "Error in string.find (nsockobj:receive_buf)!": a string was provided as the -- "Error in string.find (nsockobj:receive_buf)!": a string was provided as the
-- first argument, and string.find() yielded an error while being called.\n -- first argument, and string.find() yielded an error while being called.\n
-- "Expected either a function or a string!": the first argument was neither a -- "Expected either a function or a string!": the first argument was neither a
-- function nor a string.\n -- function nor a string.\n
-- "Delimiter has negative size!": the returned start offset is greater than the -- "Delimiter has negative size!": the returned start offset is greater than the
-- end offset.\n -- end offset.\n
-- @param delimiter A Lua pattern or a function with return values like those of -- @param delimiter A Lua pattern or a function with return values like those of
-- string.find. -- string.find.
-- @param keeppattern Whether to return the delimiter string with any returned -- @param keeppattern Whether to return the delimiter string with any returned
-- data. -- data.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Data (if status is true) or error string (if status is false). -- @return Data (if status is true) or error string (if status is false).
function socket:receive_buf(delimiter, keeppattern) function socket:receive_buf(delimiter, keeppattern)
--- Closes an open connection. --- Closes an open connection.
-- \n\n -- \n\n
-- On success the function returns true. If the close fails, the function -- On success the function returns true. If the close fails, the function
-- returns false and an error string. Currently the only error message is -- returns false and an error string. Currently the only error message is
-- "Trying to close a closed socket", which is issued if the socket has already -- "Trying to close a closed socket", which is issued if the socket has already
-- been closed. -- been closed.
-- \n\n -- \n\n
-- Sockets are subject to garbage collection. Should you forget to close a -- Sockets are subject to garbage collection. Should you forget to close a
-- socket, it will get closed before it gets deleted (on the next occasion Lua's -- socket, it will get closed before it gets deleted (on the next occasion Lua's
-- garbage collector is run). However since garbage collection cycles are -- garbage collector is run). However since garbage collection cycles are
-- difficult to predict, it is considered good practice to close opened sockets. -- difficult to predict, it is considered good practice to close opened sockets.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Error code (if status is false). -- @return Error code (if status is false).
function socket:close() function socket:close()
--- Gets information about a socket. --- Gets information about a socket.
-- \n\n -- \n\n
-- This function returns information about the socket object. It returns 5 -- This function returns information about the socket object. It returns 5
-- values. If an error occurred, the first value is nil and the second value -- values. If an error occurred, the first value is nil and the second value
-- describes the error condition. Otherwise the first value describes the -- describes the error condition. Otherwise the first value describes the
-- success of the operation and the remaining 4 values describe both endpoints -- success of the operation and the remaining 4 values describe both endpoints
-- of the TCP connection. If you put the call in a try() statement the status -- of the TCP connection. If you put the call in a try() statement the status
-- value is consumed. The call can be used for example if you want to query an -- value is consumed. The call can be used for example if you want to query an
-- authentication server. -- authentication server.
-- @return Status (true or false). -- @return Status (true or false).
-- @return Local IP address (if status is true) or error string (if status is -- @return Local IP address (if status is true) or error string (if status is
-- false). -- false).
-- @return Local port number (if status is true). -- @return Local port number (if status is true).
-- @return Remote IP address (if status is true). -- @return Remote IP address (if status is true).
-- @return Remote port number (if status is true). -- @return Remote port number (if status is true).
function socket:get_info() function socket:get_info()
--- Sets a timeout for socket input and output operations. --- Sets a timeout for socket input and output operations.
-- \n\n -- \n\n
-- After this time, given in milliseconds, socket operations will time out and -- After this time, given in milliseconds, socket operations will time out and
-- return. The default value is 30,000 (30 seconds). The lowest allowed value is -- return. The default value is 30,000 (30 seconds). The lowest allowed value is
-- 10 ms, since this is the granularity of NSE network I/O. -- 10 ms, since this is the granularity of NSE network I/O.
-- @param t Timeout in milliseconds. -- @param t Timeout in milliseconds.
function socket:set_timeout(t) function socket:set_timeout(t)
--- Opens a socket for raw packet capture. --- Opens a socket for raw packet capture.
-- \n\n -- \n\n
-- The callback function is a function that receives a packet with headers and -- The callback function is a function that receives a packet with headers and
-- computes a "packet hash"--some value derived from the packet. For example, -- computes a "packet hash"--some value derived from the packet. For example,
-- the callback function could extract the source IP address from a packet. The -- the callback function could extract the source IP address from a packet. The
-- hash of each packet received is compared against all the strings registered -- hash of each packet received is compared against all the strings registered
-- with the pcap_register function. -- with the pcap_register function.
-- @param device The dnet-style interface name of the device you want to capture -- @param device The dnet-style interface name of the device you want to capture
-- from. -- from.
-- @param snaplen The length of each packet you want to capture (similar to the -- @param snaplen The length of each packet you want to capture (similar to the
-- -s option to tcpdump)\n -- -s option to tcpdump)\n
-- @param promisc Should be set to 1 if the interface should activate -- @param promisc Should be set to 1 if the interface should activate
-- promiscuous mode, and 0 otherwise. -- promiscuous mode, and 0 otherwise.
-- @param test_function Callback function used to compute the packet hash. -- @param test_function Callback function used to compute the packet hash.
-- @param bpf A string describing a Berkeley packet filter expression (like -- @param bpf A string describing a Berkeley packet filter expression (like
-- those provided to tcpdump). -- those provided to tcpdump).
-- @see socket:pcap_register -- @see socket:pcap_register
function socket:pcap_open(device, snaplen, promisc, test_function, bpf) function socket:pcap_open(device, snaplen, promisc, test_function, bpf)
--- Starts listening for incoming packages. --- Starts listening for incoming packages.
-- \n\n -- \n\n
-- The provided packet_hash is a binary string which has to match the hash -- The provided packet_hash is a binary string which has to match the hash
-- returned by the test_function parameter provided to pcap_open(). If you want -- returned by the test_function parameter provided to pcap_open(). If you want
-- to receive all packets, just provide the empty string (""). There has to be a -- to receive all packets, just provide the empty string (""). There has to be a
-- call to pcap_register() before a call to pcap_receive(). -- call to pcap_register() before a call to pcap_receive().
-- @param packet_hash A binary string that is compared against packet hashes. -- @param packet_hash A binary string that is compared against packet hashes.
-- @see socket:pcap_open -- @see socket:pcap_open
function socket:pcap_register(packet_hash) function socket:pcap_register(packet_hash)
--- Receives a captured packet. --- Receives a captured packet.
-- \n\n -- \n\n
-- If an error or timeout occurs, the function returns false and an error -- If an error or timeout occurs, the function returns false and an error
-- message. Otherwise, the function returns true followed by the packet length, -- message. Otherwise, the function returns true followed by the packet length,
-- the layer two header, and the layer three header. -- the layer two header, and the layer three header.
-- @return Status (true or false). -- @return Status (true or false).
-- @return The length of the captured packet (this may be smaller than the -- @return The length of the captured packet (this may be smaller than the
-- actual packet length since packets are truncated when the Libpcap snaplen -- actual packet length since packets are truncated when the Libpcap snaplen
-- parameter is smaller than the total packet length). -- parameter is smaller than the total packet length).
-- @return Data from the second OSI layer (e.g. ethernet headers). -- @return Data from the second OSI layer (e.g. ethernet headers).
-- @return Data from the third OSI layer (e.g. IPv4 headers). -- @return Data from the third OSI layer (e.g. IPv4 headers).
function socket:pcap_receive() function socket:pcap_receive()
--- Closes the pcap device. --- Closes the pcap device.
function socket:pcap_close() function socket:pcap_close()
--- Creates a new dnet object, used to send raw packets. --- Creates a new dnet object, used to send raw packets.
function nmap.new_dnet() function nmap.new_dnet()
--- Opens an ethernet interface for raw packet sending. --- Opens an ethernet interface for raw packet sending.
-- \n\n -- \n\n
-- An error ("device is not valid ethernet interface") is thrown in case the -- An error ("device is not valid ethernet interface") is thrown in case the
-- provided argument is not valid. -- provided argument is not valid.
-- @param interface_name The dnet-style name of the interface to open. -- @param interface_name The dnet-style name of the interface to open.
function dnet:ethernet_open(interface_name) function dnet:ethernet_open(interface_name)
--- Sends a raw ethernet frame. --- Sends a raw ethernet frame.
-- \n\n -- \n\n
-- The dnet object must be associated with a previously opened interface. The -- The dnet object must be associated with a previously opened interface. The
-- packet must include the IP and ethernet headers. including IP header and -- packet must include the IP and ethernet headers. including IP header and
-- ethernet header. If there was no previous valid call to ethernet_open() an -- ethernet header. If there was no previous valid call to ethernet_open() an
-- error is thrown ("dnet is not valid opened ethernet interface"). -- error is thrown ("dnet is not valid opened ethernet interface").
-- @param packet -- @param packet
function dnet:ethernet_send(packet) function dnet:ethernet_send(packet)
--- Closes an ethernet interface. --- Closes an ethernet interface.
-- \n\n -- \n\n
-- An error ("device is not valid ethernet interface") is thrown in case the -- An error ("device is not valid ethernet interface") is thrown in case the
-- provided argument is not valid. -- provided argument is not valid.
function dnet:ethernet_close() function dnet:ethernet_close()