使用java捕获dns数据包
我想记录系统中访问的网站。所以我决定记录系统发送的数据包。我正在使用 Jpcap API。我能够记录很多数据包。现在我想做的是只过滤 DNS 数据包。我想这样就能登录网站了。
我想要一种过滤 DNS 数据包的方法。我该怎么做呢?
I want to log the websites visited in a system. So i decided to record the packets send by the system. I am using Jpcap API. I am able to record a lot of packets. Now what i want to do is i want to filter only DNS packets. I think that will be able to log the websites.
I want a way to filter the DNS packets. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一种更丑陋的方法是在端口 53 上扫描 UDP。
然而,从实施方面来看,之前的答案看起来更干净。
One uglier approach is to scan on port 53 for UDP.
However, previous answer looks cleaner from implementation aspect.
这里说
因此,我相信
应该可以
Here it says
Thus, I believe
should work
我发现处理端口 53 中的所有数据包很容易,所以我使用了这个过滤器
tanx 插孔用于提示
i found it easy processing all the packets in port 53 and so i used this filter
tanx jack for ur hint