
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
ineedatestcert
Advanced tools
cli for generating certificates
First, npm install -g ineedatestcert then:
Note: The examples below use
inatcas the command name, but you can also fully spell it out, if you wish (ie:ineedatestcert)
$ inatc
Options:
-h, --help Show help [boolean]
-o, --out specify a file to output to [default: null]
-b specify key size [default: 2048]
-c, --name specify common name [default: "<uuid>.ineedatestcert.com"]
-p, --password password to use for pkcs [default: ""]
-t, --type type of output - pem or pkcs [default: "pkcs"]
-u, --org organization to use [default: "Test Cert"]
-a, --ca specify file to output ca bundle to [default: null]
--alt specify alternative dns names [default: null]
--na not after date [default: <now>+1yr]
Made with <3 by @bengreenier
Generating certificates in different formats on different oses is hard. At the very least you need to remember a bunch of openssl flags and have openssl installed everywhere. This is easier, pure js, and works everywhere.
You can use ineedatestcert as a module, too. Just npm install ineedatestcert then:
var TestCert = require('ineedatestcert');
var myCert = new TestCert({
type: "pkcs",
password: "",
name: "<uuid>.innedatestcert.com",
org: "Test Cert",
b: 2048
}).crunch(function (err, self) {
//assert.equal(err, null);
//assert.equal(self, myCert);
var raw = myCert.getRaw();
var publicRaw = myCert.getRawPublicOnly();
var base64 = myCert.getBase64();
});
Note: The constructor is lightweight - the certificate creation calculations occur in
crunch()
exposed by require('ineedatestcert') - used to create test cert instances.
Note: crunch optionally takes a callback that gets passed any error instance, and the instance of the test cert. It is called once all the calculations complete (and the cert is therefore made). If it isn't passed, a promise is returned.
member function - used to actually do the maths to create the test cert data.
Note: When called with a
pemcert, this is a string. When called withpkcsthis is a string of binary data. When writingpkcsto disk you should specifyencoding: "binary"
member function - returns the raw data of the test cert.
Note: This is a
pemstyle string.
member function - returns the raw data of the public bits of the test cert.
member function - returns a base64 encoded representation of GetRaw()
MIT
FAQs
cli for generating certificates
We found that ineedatestcert 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.