• Lua语言在Wireshark中使用(转)


    1.       检查Wireshark的版本是否支持Lua

    打开Wireshark,点击“HelpàAbout Wireshark”菜单,查看弹出的对话框,如果有“with Lua 5.1”表示支持Lua语言扩展,如果有“without Lua”表示不支持Lua扩展。

     

    2.       启用LUA

    在全局配置文件中启用LUA的方法是从init.lua文件中删除disable_lua这一行。该文件可以通过点击“HelpàAbout Wireshark”,在弹出的对话框中找到“FoldersàGlobal configuration”,获得init.lua的位置为C:/Program Files/Wireshark,打开该文件夹可以发现init.lua文件。

    -- Lua is disabled by default, comment out the following line to enable Lua support.

    --disable_lua = true; do return end;

    -- If set and we are running with special privileges this setting

    -- tells whether scripts other than this one are to be run.

    run_user_scripts_when_superuser = false

    缺省情况下Lua是不启用的,前面增加“--”注释掉这一行启用LUA。

    3.       创建测试脚本

    创建一个Hello World的LUA测试脚本来检查Lua是否启用。

    -- hello.lua

    -- Lua's implementation of D. Ritchie's hello world program.

    print ("Hello world!")

    4.       测试hello.lua脚本

    可以通过tshark命令来进行测试,进入到wireshark的安装目录中执行下面的命令。

    # cd c:Program FilesWireshark

    # tshark -x lua_script:hello.lua

    C:Program FilesWireshark>tshark -X lua_script:hello.lua

    Hello world!

    Capturing on Intel(R) 82567LM Gigabit Network Connection

    接下来您可以使用Lua语言来为Wireshark增加协议的解码器。

    http://blog.csdn.net/fan_hai_ping/article/details/6703468

  • 相关阅读:
    delete与double free
    OpenCV(1)——基础数据结构CvMat
    防止表单自动提交_随笔2012年5月16日
    Flex 学习笔记学习资料
    当析构函数遇到多线程 ── C++ 中线程安全的对象回调
    .NET Core2.0+MVC 用session,cookie实现的sso单点登录
    TreeView中右击直接获取节点的方法
    webservice 远程调试配置
    数组,集合 转成DataTable 方法
    String类中几个简单的常用方法
  • 原文地址:https://www.cnblogs.com/softidea/p/5283687.html
Copyright © 2020-2023  润新知