forked from yyfrankyy/h2dns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathh2dns.js
319 lines (297 loc) · 8.14 KB
/
h2dns.js
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
'use strict';
//MaxListeners Leak Fix
process.setMaxListeners(0);
const dnsd = require('./dnsd/named');
const randomCase = require('random-case');
const randomstring = require('randomstring');
const shuffle = require('shuffle-array');
const spdy = require('spdy');
const url = require('url');
const forwardUrl = 'https://dns.google.com:443/resolve';
const resolver = url.parse(forwardUrl);
const request = require('request')
.defaults(
{
agent: spdy.createAgent(
{
host: resolver.hostname,
port: resolver.port,
family: process.argv[4] || 0
})
.once('error', (err) =>
{
console.error('agent error: %s', err);
}),
json: true
});
const Constants = require('./dnsd/constants');
const ip6 = require('ip6');
const subnet = process.argv[5];
const SupportTypes = ['A', 'MX', 'CNAME', 'TXT', 'PTR', 'AAAA', 'NS'];
const server = dnsd.createServer((req, res) =>
{
let question = req.question[0],
/*
* Use 0x20-encoded random bits in the query to foil spoof attempts. This
* perturbs the lowercase and uppercase of query names sent to authority
* servers and checks if the reply still has the correct casing. This
* feature is an Experimental implementation of draft dns-0x20.
*/
hostname = question.name;
//let timeStamp = `[${req.id}/${req.connection.type}] ${req.opcode} ${hostname} ${question.class} ${question.type}`;
//console.time(timeStamp);
// TODO unsupported due to dnsd's broken implementation.
if (SupportTypes.indexOf(question.type) === -1)
{
//console.timeEnd(timeStamp);
return res.end();
}
else if (req.question[0].type == 'A' && question.name != resolver.hostname)
{
question.type = 'AAAA';
//let timeStamp6 = `[${req.id}/${req.connection.type}] Preference ${req.opcode} ${hostname} ${question.class} ${question.type}`;
//console.time(timeStamp6);
//console.log('Testing %s for %s', question.type,hostname);
// API clients concerned about possible side-channel privacy attacks
// using the packet sizes of HTTPS GET requests can use this to make
// all
// requests exactly the same size by padding requests with random
// data.
let padding = randomstring.generate(
{
// maximum dnslength+type.length (longest possible Type 5
// digits)
// minus current To make always equal query lenght url
length: 258 - question.name.length - Constants.type_to_number(question.type)
.toString()
.length,
// safe but can be more extended chars-_
charset: 'alphanumeric'
});
let query = {
name: hostname,
type: Constants.type_to_number(question.type),
random_padding: padding
}
if (subnet)
{
query.edns_client_subnet = subnet;
}
request(
{
url: forwardUrl,
qs: query,
gzip: true
}, (err, response, output) =>
{
//if(typeof output.Answer[1] !== 'undefined'){if(output.Answer.type == 5&&output.Answer[1].type == 28)return//var cname=1}
var cname = 0;
var cnameaaaa = 0;
if (typeof output.Answer !== 'undefined')
{ //console.dir(output);
if (output.Answer.length != 0 && output.Answer[0].type == 5) cname = 1
if (output.Answer[output.Answer.length - 1].type == 28) cnameaaaa = 1
}
//console.dir(cname);console.dir(cnameaaaa)
if (typeof output.Authority !== 'undefined' || output.Status == 2 || (cname == 1 && cnameaaaa != 1))
{ //cname record
// fix A Query blocking
// Reset Back to and for Original query Type fallback
question.type = 'A';
let padding = randomstring.generate(
{
// maximum dnslength+type.length (longest possible Type
// 5 digits)
// minus current To make always equal query lenght url
length: 257 - question.name.length,
// safe but can be more extended chars-_
charset: 'alphanumeric'
})
let query = {
name: hostname,
type: 1,
random_padding: padding
}
if (subnet)
{
query.edns_client_subnet = subnet;
}
request(
{
url: forwardUrl,
qs: query,
gzip: true
}, (err, response, output) =>
{
if (output && output.Answer)
{
// https://en.wikipedia.org/wiki/Round-robin_DNS
if(output.Answer.length>1){
shuffle(output.Answer);
}
res.recursion_available = output.RA;
res.recursion_desired = output.RD;
res.answer = output.Answer.map(rec =>
{
rec.type = Constants.type_to_label(rec.type);
//console.dir(rec)
return rec;
});
}
else if (err)
{
console.error('request error %s', err);
}
if (typeof output.Comment !== 'undefined')
{
// Resolvercomment "Response from x.x.x.x"
process.stdout.write(output.Comment + "\n")
}
//console.timeEnd(timeStamp);
res.end();
});
}
else if (typeof output.Answer !== 'undefined')
{ //output.type!=5
if (output && output.Answer)
{
// https://en.wikipedia.org/wiki/Round-robin_DNS
if(output.Answer.length>1){
shuffle(output.Answer);
}
res.recursion_available = output.RA;
res.recursion_desired = output.RD;
res.answer = output.Answer.map(rec =>
{
rec.type = Constants.type_to_label(rec.type);
// CNAME
if (rec.type === 'AAAA')
{
// dnsd is expecting long IP Version 6 format
rec.data = ip6.normalize(rec.data);
}
return rec;
});
}
else if (err)
{
console.error('request error %s', err);
}
if (typeof output.Comment !== 'undefined')
{
// Resolvercomment "Response from x.x.x.x"
process.stdout.write(output.Comment + "\n")
}
//console.timeEnd(timeStamp6);
res.end();
}
});
}
else
{
// Original Query
// API clients concerned about possible side-channel privacy attacks
// using the packet sizes of HTTPS GET requests can use this to make
// all
// requests exactly the same size by padding requests with random
// data.
let padding = randomstring.generate(
{
// maximum dnslength+type.length (longest possible Type 5
// digits)
// minus current To make always equal query lenght url
length: 258 - question.name.length - Constants.type_to_number(question.type)
.toString()
.length,
// safe but can be more extended chars-_
charset: 'alphanumeric'
});
let query = {
name: hostname,
type: Constants.type_to_number(question.type),
random_padding: padding
}
if (subnet)
{
query.edns_client_subnet = subnet;
}
request(
{
url: forwardUrl,
qs: query,
gzip: true
}, (err, response, output) =>
{
if (output && output.Answer)
{
if(output.Answer.length>1){
shuffle(output.Answer);
}
res.recursion_available = output.RA;
res.recursion_desired = output.RD;
res.answer = output.Answer.map(rec =>
{
// TODO 0x20 rec.name=rec.name.toLowerCase;
rec.type = Constants.type_to_label(rec.type);
switch (rec.type)
{
case 'MX':
rec.data = rec.data.split(/\s+/);
break;
case 'TXT':
case 'SPF':
rec.data = rec.data.slice(1, -1);
break;
case 'AAAA':
// dnsd is expecting long IPVersion 6 format
rec.data = ip6.normalize(rec.data);
break;
}
return rec;
});
}
else if (err)
{
console.error('request error %s', err);
}
if (typeof output.Comment !== 'undefined')
{
// Resolvercomment "Response from x.x.x.x"
process.stdout.write(output.Comment + "\n")
}
//console.timeEnd(timeStamp);
res.end();
});
}
});
server.on('error', err =>
{
console.error('dnsd error: %s', err);
if (err.code == 'EADDRINUSE')
{
console.log('Address in use, retrying...');
setTimeout(() =>
{
server.close();
server.listen(process.argv[2] || 6666, process.argv[3] || '127.0.0.1');
}, 1000);
}
//server.removeAllListeners('error')
});
const devnull = require('dev-null');
setInterval(() =>
{
let ping = forwardUrl + '?name=' + resolver.hostname;
request(ping)
.pipe(devnull());
}, 300 * 1000);
//pm2
process.on('SIGINT', function (msg)
{
// process reload ongoing
server.removeAllListeners();
server.close();
// by default, you have 1600ms
process.exit(0);
});
server.listen(process.argv[2] || 6666, process.argv[3] || '127.0.0.1');