
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
acme-dns-01-vultr
Advanced tools
Vultr DNS for Let's Encrypt / ACME dns-01 challenges with ACME.js and Greenlock.js
Vultr DNS + Let's Encrypt for Node.js
This handles ACME dns-01 challenges, compatible with ACME.js and Greenlock.js. Passes acme-dns-01-test.
npm install --save acme-dns-01-vultr@3.x
First you create an instance with your API token:
var dns01 = require('acme-dns-01-vultr').create({
baseUrl: 'https://api.vultr.com/v1/dns', // default
token: 'xxxx'
});
Then you can use it with any compatible ACME module, such as Greenlock.js or ACME.js.
var Greenlock = require('greenlock-express');
var greenlock = Greenlock.create({
challenges: {
'dns-01': dns01
// ...
}
});
See Greenlock™ Express and/or Greenlock.js documentation for more details.
// TODO
See the ACME.js for more details.
dns01
.set({
identifier: { value: 'foo.example.com' },
wildcard: false,
dnsHost: '_acme-challenge.foo.example.com',
dnsAuthorization: 'xxx_secret_xxx'
})
.then(function() {
console.log('TXT record set');
})
.catch(function() {
console.log('Failed to set TXT record');
});
See acme-dns-01-test for more implementation details.
# node ./test.js domain-zone api-key
node ./test.js example.com xxxxxx
FAQs
Vultr DNS for Let's Encrypt / ACME dns-01 challenges with ACME.js and Greenlock.js
The npm package acme-dns-01-vultr receives a total of 8 weekly downloads. As such, acme-dns-01-vultr popularity was classified as not popular.
We found that acme-dns-01-vultr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.