
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
dns-over-https-server
Advanced tools
A proxy server which convert DNS protocal to DNS over HTTPS
Demo:
// index.js
const dnsOverHttpsServer = require("dns-over-https-server");
let server = new dnsOverHttpsServer.DnsOverHttpsServer;
server.listen(53, "127.0.0.1");// confirm right if use port 53, like sudo in linux.
Test(listen):
$ sudo node index.js
remote server: 1.1.1.1:443
[ DNSRecord { name: 'google.com', type: 'A', class: 'IN' } ]
ask: google.com
ans: [ { name: 'google.com.', type: 'A', data: '172.217.6.78', ttl: 140 } ]
Test(DNS request):
$ dig google.com @127.0.0.1
; <<>> DiG 9.9.4-RedHat-9.9.4-61.el7 <<>> google.com @127.0.0.1
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 22316
;; flags: qr rd ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available
;; QUESTION SECTION:
;google.com. IN A
;; ANSWER SECTION:
google.com. 3600 IN A 172.217.6.46
;; Query time: 705 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Sep 25 17:14:28 CST 2018
;; MSG SIZE rcvd: 44
FAQs
A proxy server which convert DNS protocal to DNS over HTTPS
We found that dns-over-https-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.