47 lines
1.4 KiB
Lua
Executable file
47 lines
1.4 KiB
Lua
Executable file
#!/usr/bin/env dnsjit
|
|
local interface = arg[2]
|
|
|
|
if interface == nil then
|
|
print("usage: "..arg[1].." <interface or any/all>")
|
|
return
|
|
end
|
|
|
|
local object = require("dnsjit.core.objects")
|
|
local input = require("dnsjit.input.pcap").new()
|
|
local layer = require("dnsjit.filter.layer").new()
|
|
local dns = require("dnsjit.core.object.dns").new()
|
|
|
|
input:create(interface)
|
|
input:activate()
|
|
layer:producer(input)
|
|
local producer, ctx = layer:produce()
|
|
|
|
while true do
|
|
local obj = producer(ctx)
|
|
if obj == nil then break end
|
|
local pl = obj:cast()
|
|
if obj:type() == "payload" and pl.len > 0 then
|
|
local transport = obj.obj_prev
|
|
while transport ~= nil do
|
|
if transport.obj_type == object.IP or transport.obj_type == object.IP6 then
|
|
break
|
|
end
|
|
transport = transport.obj_prev
|
|
end
|
|
local protocol = obj.obj_prev
|
|
while protocol ~= nil do
|
|
if protocol.obj_type == object.UDP or protocol.obj_type == object.TCP then
|
|
break
|
|
end
|
|
protocol = protocol.obj_prev
|
|
end
|
|
|
|
dns.obj_prev = obj
|
|
if transport ~= nil and protocol ~= nil then
|
|
transport = transport:cast()
|
|
protocol = protocol:cast()
|
|
print(protocol:type().." "..transport:source()..":"..tonumber(protocol.sport).." -> "..transport:destination()..":"..tonumber(protocol.dport))
|
|
dns:print()
|
|
end
|
|
end
|
|
end
|