dnssim 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -8
- package/known_sites.js +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
@@ -11,11 +11,4 @@ Set this to a comma-separated list of ip addresses for DNS servers to send reque
|
|
11
11
|
Maximum number of simultaneous requests to send. Comparable to number of active devices to simulate being on your network.
|
12
12
|
|
13
13
|
## Same problem, different ISP?
|
14
|
-
If your ISP is equally evil you can simply change the line in `main.js` starting with `dns.setServers([...` to use whatever DNS servers they're shoving down your throat.
|
15
|
-
|
16
|
-
## Legal
|
17
|
-
### ISP
|
18
|
-
The volume of requests shouldn't be significantly higher than what would be generated from regular browsing activty and nowhere near enough to contribute to a DDoS. The purpose of the requests is only to mitigate the damage done by your willful violation of our privacy rights (as evidenced by language used on your website). Your support team says that in order to use a different DNS service one must change the DNS settings on all devices on the network (instead of the router we're required to use) but in reality many devices don't support such advanced network configuration settings (and doing so would degrade performance), so the best solution is just to generate fake requests so that the requests sent from unprotected devices are burried in bogus requests and authenticity cannot be verified. Your actions are introducing serious security risks to American consumers as DNS data can be used to, for example, find vulnerable IoT devices on a network.
|
19
|
-
|
20
|
-
### User
|
21
|
-
I do not recommend using this with a DNS server that you don't control or modifying the code to use multiple threads. If you're really paranoid about security I'd combine this with a VPN .
|
14
|
+
If your ISP is equally evil you can simply change the line in `main.js` starting with `dns.setServers([...` to use whatever DNS servers they're shoving down your throat.
|
package/known_sites.js
CHANGED
@@ -3,7 +3,6 @@ module.exports = [
|
|
3
3
|
// Shameless self-promotion
|
4
4
|
'dvtt.net',
|
5
5
|
'xtie.net',
|
6
|
-
'xssaas.com',
|
7
6
|
'bodge.dev',
|
8
7
|
'dvtate.github.io',
|
9
8
|
'corki.js.org',
|
@@ -25,6 +24,7 @@ module.exports = [
|
|
25
24
|
|
26
25
|
// Public good
|
27
26
|
'wikipedia.org',
|
27
|
+
'w3.org',
|
28
28
|
|
29
29
|
// Popular search engines
|
30
30
|
'google.com',
|
@@ -69,6 +69,11 @@ module.exports = [
|
|
69
69
|
'blogspot.com',
|
70
70
|
'yelp.com',
|
71
71
|
|
72
|
+
// Instant messengers
|
73
|
+
't.me',
|
74
|
+
'discord.com',
|
75
|
+
'gmail.com',
|
76
|
+
|
72
77
|
// news
|
73
78
|
'cnn.com',
|
74
79
|
'wsj.com',
|
@@ -99,6 +104,7 @@ module.exports = [
|
|
99
104
|
|
100
105
|
// Schools
|
101
106
|
'iit.edu',
|
107
|
+
'mit.edu',
|
102
108
|
'uchicago.edu',
|
103
109
|
|
104
110
|
// Other
|
@@ -108,5 +114,5 @@ module.exports = [
|
|
108
114
|
'x.com',
|
109
115
|
'wasm.builders',
|
110
116
|
'feedburner.com',
|
111
|
-
|
117
|
+
'3m.com',
|
112
118
|
];
|
package/package.json
CHANGED