TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Fuzzing DNS Zone Parsers

57 点作者 fcambus将近 6 年前

3 条评论

tptacek将近 6 年前
This is a little disturbing; nsd is kind of a big deal, and afl on zone files is a pretty basic test to run. Kudos to the author for doing it, but why haven&#x27;t the authors of nsd done it already, and what else haven&#x27;t they done?<p>There is really no good reason for DNS servers to be written in C anymore.
评论 #20412796 未加载
评论 #20413993 未加载
nly将近 6 年前
Nobody knows how to parse zone files.<p>I fuzzed a few zone file parsers several years ago, but to find the differences between implementations rather than crashes.<p>The problem is the format is really poorly specified, has been refined over about 10 RFCs, and still riddled with ambiguities. Every implementation out there handles things slightly differently.<p>I&#x27;ll just dump some notes I wrote at the time, containing a list of RFCs and some findings, to gist:<p><a href="https:&#x2F;&#x2F;gist.github.com&#x2F;nlyan&#x2F;2a958fa476182e1b07955a945f0d7052" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;nlyan&#x2F;2a958fa476182e1b07955a945f0d70...</a>
评论 #20421021 未加载
ifoundthetao将近 6 年前
Excellent! Would you be willing to do a second article on the process you used when wading through the findings?