Wireshark

  • Riverbed Technology
  • WinPcap
the world's foremost network protocol analyzer
  • Wireshark
    • About
    • Download
    • Blog
  • Get Help
    • Ask a Question
    • FAQs
    • Documentation
    • Mailing Lists
    • Online Tools
    • Wiki
    • Bug Tracker
  • Develop
    • Get Involved
    • Developer's Guide
    • Browse the Code
    • Latest Builds

Wireshark-users: Re: [Wireshark-users] Lua scripting (obtaining protocol fields)

Date Index Thread Index Other Months All Mailing Lists
Date Prev Date Next Thread Prev Thread Next


From: "Luis EG Ontanon" <luis.ontanon@xxxxxxxxx>
Date: Tue, 11 Sep 2007 21:37:20 +0200

On 9/11/07, Dan Siemon <dan.siemon@xxxxxxxxx> wrote:
> However, I haven't been able to figure out how I can get access to parts of
> the packet data that are not covered by the display filter syntax. The
> particular example I am working on now involves obtaining the answers in a
> DNS response packet.

dnsExtractor = Field.new(" dns")

function tap.packet(pinfo, tvb, userdata)
       local dns_tvb = Tvb.new_real(dnsExtractor())
       local id = dns_tvb(0,2):get_uint() -- tvbrange:get_uint()
end

but that means redissecting dns...

BTW:
 For which fields the dns dissector does not have display filter fields?


if there are multiple instances of a field in a given packet you can
get a table with them all this way:

xxxs_table = {xxxExtractor()}

or you can:

value1, value2 =  xxxExtractor();


-- 
This information is top security. When you have read it, destroy yourself.
-- Marshall McLuhan

  • Follow-Ups:
    • Re: [Wireshark-users] Lua scripting (obtaining protocol fields)
      • From: Luis EG Ontanon
  • References:
    • [Wireshark-users] Lua scripting (obtaining protocol fields)
      • From: Dan Siemon
  • Prev by Date: Re: [Wireshark-users] Opening Pix Syslog with Wireshark
  • Next by Date: Re: [Wireshark-users] Lua scripting (obtaining protocol fields)
  • Previous by thread: [Wireshark-users] Lua scripting (obtaining protocol fields)
  • Next by thread: Re: [Wireshark-users] Lua scripting (obtaining protocol fields)
  • Index(es):
    • Date
    • Thread

Wireshark and the "fin" logo are registered trademarks of the Wireshark Foundation