summaryrefslogtreecommitdiffstats
path: root/testing/xpcshell/dns-packet/examples/doh.js
blob: 37ef19fc3524b60a0c4308bc876d386783a3b6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'use strict'

/*
 * Sample code to make DNS over HTTPS request using POST
 * AUTHOR: Tom Pusateri <pusateri@bangj.com>
 * DATE: March 17, 2018
 * LICENSE: MIT
 */

const dnsPacket = require('..')
const https = require('https')

function getRandomInt (min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min
}

const buf = dnsPacket.encode({
  type: 'query',
  id: getRandomInt(1, 65534),
  flags: dnsPacket.RECURSION_DESIRED,
  questions: [{
    type: 'A',
    name: 'google.com'
  }]
})

const options = {
  hostname: 'dns.google.com',
  port: 443,
  path: '/experimental',
  method: 'POST',
  headers: {
    'Content-Type': 'application/dns-udpwireformat',
    'Content-Length': Buffer.byteLength(buf)
  }
}

const request = https.request(options, (response) => {
  console.log('statusCode:', response.statusCode)
  console.log('headers:', response.headers)

  response.on('data', (d) => {
    console.log(dnsPacket.decode(d))
  })
})

request.on('error', (e) => {
  console.error(e)
})
request.write(buf)
request.end()