Lua

Lua

Lua logo

Lua is a powerful light-weight programming language designed for extending applications. Lua is designed and implemented by a team at PUC-Rio, the Pontifical Catholic University of Rio de Janeiro in Brazil. Lua was born and raised at Tecgraf, the Computer Graphics Technology Group of PUC-Rio, and is now housed at Lua.org. Both Tecgraf and Lua.org are laboratories of the Department of Computer Science.

Lua's been added to Wireshark as a language for prototyping and scripting.

For more information about Lua refer to Lua's main site, there you can find its Reference Manual and a book that describes the language. There is also The lua-users wiki. For the nickel tour see - Introducing Lua.

Beware the GPL

Wireshark is released under GPL so every derivative work based on Wireshark must be released under the terms of the GPL.

Even if the code you write in Lua does not need to be GPL'ed. The code written in Lua that uses bindings to Wireshark must be distributed under the GPL terms. see the GPL FAQ for more info

There is at least one Wireshark author that will not allow to distribute derivative work under different terms. To distribute Lua code that uses Wireshark's bindings under different terms would be a clear violation of the GPL.

If it isn't clear to you what the GPL is and how it works please consult your lawyer.

Lua in Wireshark

Lua can be used to write dissectors, post-dissectors and taps.

Although it's possible to write dissectors in Lua, Wireshark dissectors are written in C, as C is several times faster than Lua. Lua is ok for prototyping dissectors, during Reverse Engineering you can use your time for finding out how things work instead of compiling and debugging your C dissector.

Post-dissectors are dissectors meant to run after every other dissector has run. They can add items the dissection tree so they can be used to create your own extensions to the filtering mechanism.

Taps are used to collect information after the packet has been dissected.

Getting Started

Lua has shipped with the Windows version of Wireshark since 0.99.4. Availability on other platforms varies. To see if your version of Wireshark supports Lua, go to Help→About Wireshark and look for Lua in the "Compiled with" paragraph.

lua-about.png

In some older versions Lua was available as a plugin.

To test Lua on your system, do the following:

  1. Make sure Lua is enabled in the global configuration as described below in How Lua Fits Into Wireshark

  2. Create a simple Lua script such as:

     -- hello.lua
     -- Lua's implementation of D. Ritchie's hello world program.
        print("hello world!")
  3. Name this script hello.lua and place it in the current directory.

  4. Run tshark -X lua_script:hello.lua from the command prompt. You should see something like:

     $ tshark -X lua_script:hello.lua
     hello world!
     Capturing on en0
     1   0.000000 111.123.234.55 -> 111.123.234.255 NBNS Name query NB XXX.COM<00>

If you can read "hello world!" in the first line after you run tshark, Lua is ready to go!

Please note: On Windows, you may not see any output when running Lua scripts in Wireshark. If the console window is enabled it will be opened after the Lua engine is loaded. This does not affect TShark, since it is a console program.

How Lua fits into Wireshark

Every time Wireshark starts it will search for a script called init.lua located in the global configuration directory of Wireshark. If Wireshark finds this file it will run the script.

Once <global configuration directory>/init.lua has run that there are two variables that tell Wireshark whether to continue looking for scripts.

If the first init script sets the variable disable_lua to true Wireshark will stop reading scripts and shut down the Lua engine right after the script was run.

Once this first script was run Wireshark will search the global plugin directory directory for files ending in .lua and run them as scripts.

If Wireshark is running suexec (i.e. as root but launched by another user) it will check if the variable run_user_scripts_when_superuser is set to true before loading any further scripts. Otherwise, after that, it will run the init.lua script in your personal configuration directory, if it exists, and then search your personal plugin directory for files ending in .lua and run them as scripts, and then will run all scripts passed with the **-X lua_script:**xxx.lua command line option in the given order.

All these scripts will be run before packets are read, at the end of the dissector registration process. So, what you have to do is to register a series of functions that will be called while processing packets.

The location of the directories containing these scripts are different on different platforms. See Appendix B, "Files and Folders" of the Wireshark User's Guide for the location of those directories.

Wireshark's Lua API

Wireshark’s Lua API Reference Manual can be found here. Changes to the API can be found here.
For a view of the Lua API internals and the steps used to create the wsluarm, see the slightly out of date, mostly correct doc/README.wslua.

220711_wslua_Index_DRAFT.pdf - an Index for the wsluarm - DRAFT

Examples

Examples of generic Lua code can be found in The Sample Code page of Lua-Users wiki.

Examples of Wireshark and TShark specific scripts:

EASYPOST.lua - a template to copy a field, modify the data and add as a new Protocol field.

External Links


Imported from https://wiki.wireshark.org/Lua on 2020-08-11 23:16:06 UTC