Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
A simple DNS proxy server for Node.js
一个简单的 Node.js DNS 代理服务器
npm install dnsproxy # install from npm
sudo dnsproxy -a a.com:127.0.0.1 & # start dns proxy server
dig @localhost a.com # test the server, return 127.0.0.1
Usage: dnsproxy [-?hv] [-b address] [-p port] [-c true|false] [-a domain1:ip1 [domain2:ip2 [...]]] [-f filename]
Options:
-?,-h : this help
-v : show version and exit
-b address : set bind address
-p port : set bind port(default: 53)
-c true|false : enable/disable cache
-a domain:ip : add one or more DNS recode
-f filename : load options from file
sudo dnsproxy -a *.a.com:127.0.0.1 *.b.a.com:127.0.0.2 &
dig @localhost xx.a.com # return 127.0.0.1
dig @localhost xx.b.a.com # return 127.0.0.2
# start server on 192.168.1.1
sudo dnsproxy -a who.am.i:localhost who.you.are:proxyhost &
# run on 192.168.1.2
dig @192.168.1.1 who.am.i # return 192.168.1.2
dig @192.168.1.1 who.you.are # return 192.168.1.1
# run on 192.168.1.3
dig @192.168.1.1 who.am.i # return 192.168.1.3
dig @192.168.1.1 who.you.are # return 192.168.1.1
FAQs
A simple DNS proxy server for Node.js
The npm package dnsproxy receives a total of 28 weekly downloads. As such, dnsproxy popularity was classified as not popular.
We found that dnsproxy 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.