Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Cabal-specific fork of datprotocol/dat-dns, originally written by pfrazee
Issue DNS lookups for Dat archives using HTTPS requests to the target host. Keeps an in-memory cache of recent lookups.
var cabalDns = require('cabal-dns')()
// resolve a name: pass the hostname by itself
cabalDns.resolveName('foo.com', function (err, key) { ... })
cabalDns.resolveName('foo.com').then(key => ...)
// dont use cached 'misses'
cabalDns.resolveName('foo.com', {ignoreCachedMiss: true})
// dont use the cache at all
cabalDns.resolveName('foo.com', {ignoreCache: true})
// dont use dns-over-https
cabalDns.resolveName('foo.com', {noDnsOverHttps: true})
// dont use .well-known/cabal
cabalDns.resolveName('foo.com', {noWellknownDat: true})
// list all entries in the cache
cabalDns.listCache()
// clear the cache
cabalDns.flushCache()
// configure the DNS-over-HTTPS host used
var cabalDns = require('cabal-dns')({
dnsHost: 'dns.google.com',
dnsPath: '/resolve'
})
// use a persistent fallback cache
// (this is handy for persistent dns data when offline)
var cabalDns = require('cabal-dns')({
persistentCache: {
read: async (name, err) => {
// try lookup
// if failed, you can throw the original error:
throw err
},
write: async (name, key, ttl) => {
// write to your cache
}
}
})
// emits some events, mainly useful for logging/debugging
cabalDns.on('resolved', ({method, name, key}) => {...})
cabalDns.on('failed', ({method, name, err}) => {...})
cabalDns.on('cache-flushed', () => {...})
Option 1 (DNS-over-HTTPS). Create a DNS TXT record witht he following schema:
cabalkey={key}
Option 2 (.well-known/cabal). Place a file at /.well-known/cabal
with the following schema:
{cabal-url}
TTL={time in seconds}
TTL is optional and will default to 3600
(one hour). If set to 0
, the entry is not cached.
FAQs
Issue DNS lookups for cabals using HTTPS requests to the target host.
The npm package cabal-dns receives a total of 5 weekly downloads. As such, cabal-dns popularity was classified as not popular.
We found that cabal-dns 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
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.