This archive is retained to ensure existing URLs remain functional. It will not contain any emails sent to this mailing list after July 1, 2024. For all messages, including those sent before and after this date, please visit the new location of the archive at https://mailman.ripe.net/archives/list/[email protected]/
[atlas] Detecting additional information from the probes
- Previous message (by thread): [atlas] Detecting additional information from the probes
- Next message (by thread): [atlas] Detecting additional information from the probes
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Stephane Bortzmeyer
bortzmeyer at nic.fr
Fri Feb 12 10:06:21 CET 2016
On Fri, Feb 12, 2016 at 04:20:51PM +0900, Christoph Rauterberg <c.rauterberg at stud.uni-goettingen.de> wrote a message of 60 lines which said: > I was wondering, if there is some way to get the information about > the Authentication Bit of DNSSEC specified in the DNS query headers. You mean the reply? > A.f.a.i.k., the probes do something similiar/do a /dig/ lookup. No. The probes have a DNS client. dig is a DNS client. That's all the similarity. > Can anyone maybe tell me, if there are possibilities to access the AUTH > bith It is accessible (the full response is in the "abuf" field, you just have to decode it, example in Python: answer = result['abuf'] + "==" content = base64.b64decode(answer) msg = dns.message.from_wire(content) if msg.flags & dns.flags.AD: print "Authentic"
- Previous message (by thread): [atlas] Detecting additional information from the probes
- Next message (by thread): [atlas] Detecting additional information from the probes
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]