BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News NPM Releases New Security Features

NPM Releases New Security Features

Lire ce contenu en français

Bookmarks

Today at the Node.js Interactive conference in Vancouver, BC, npm, Inc. announced the launch of new security features meant to keep the npm Registry more secure from attackers.

Given its widespread use and the way that JavaScript developers use npm packages for even the smallest purposes, the safety of the registry is of paramount concern. If an attacker were to gain access to the credentials of a heavily reference package, the damage could be widespread.

The new npm token CLI tool provides new ways to create tokens in a more secure manner. The ability to limit auth tokens becomes particularly useful in situations where the auth token is accidentally leaked. For example:

npm token create —cidr=[10.0.0.1/32]

This will create a token that is only useable within a given IP range. In a situation where a token is leaked in source control or continuous integration logs, this token will only be useful within that IP range. If an attacker were to obtain the token, there would be limits to where it could be used.

Read-only tokens are now available as well:

npm token create —readonly

A token created this way will only be able to read the package, not publish.

Also new is the ability to protect a profile with two-factor authentication (2FA). Accounts can be hooked up with existing authentication apps such as Google Authenticator; text messages with SMS is not an option.

When 2FA is enabled in auth-and-writes mode, operations such as publishing a new version or changing the “latest” tag will require a one-time password from the authenticator. Below is a screenshot of what the process looks like when enabling 2FA.

Screenshot showing the process of enabling 2FA on an npm profile

Currently 2FA is enabled on a per-profile basis. This means that if a package has multiple maintainers, each one has to enable 2FA. In the near future, npm will offer the ability to require 2FA at the package level. Also, organizations using private repositories will be able to enable 2FA at the organization level.

According to npm CTO CJ Silverio, part of their goal is to make sure the registry is as secure as possible. “Npm wants to be so boring and reliable that you can thoughtlessly use npm multiple times per day” without worrying about the integrity of the registry, says Silverio.

Developers can use the new CLI tools with npm install -g npm@next.

Rate this Article

Adoption
Style

BT