Mar*_*ner 6

“截至 2010 年 12 月 18 日,没有任何补救措施。” 错了,大错特错。 自 2006 年 2 月(至少)以来已经有一个修复程序。把它放在你的 BIND 配置中(它可能已经在那里了):

options {
  version "none";
}
Run Code Online (Sandbox Code Playgroud)

让我“制作”这个“特殊”查询(不要在家里尝试):

$ nslookup -q=txt -class=CHAOS authors.bind. localhost
Server:         localhost
Address:        127.0.0.1#53

*** Can't find authors.bind.: No answer
Run Code Online (Sandbox Code Playgroud)

有关保护 BIND 的更多信息,请查看http://www.cymru.com/Documents/secure-bind-template.html

  • 需要明确的是……字符串“none”的特殊之处在于它禁用了该功能。如果您将其设置为“未知”或其他任何内容,则不会发生这种情况。 (2认同)