Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@azure/identity-cache-persistence
Advanced tools
A secure, persistent token cache for Azure Identity credentials that uses the OS secret-management API
This package provides a plugin to the Azure Identity library for JavaScript (@azure/identity
) that enables persistent token caching. Token cache persistence allows the built-in token cache to persist across sessions using a secure storage system provided by the local operating system.
const { useIdentityPlugin } = require("@azure/identity");
const { cachePersistencePlugin } = require("@azure/identity-cache-persistence");
useIdentityPlugin(cachePersistencePlugin);
This package is designed to be used with Azure Identity for JavaScript. Install both @azure/identity
and this package using npm
:
$ npm install --save @azure/identity
$ npm install --save @azure/identity-cache-persistence
Azure Identity plugins for JavaScript support stable (even numbered) versions of Node.js starting from v12. While the plugins may run in other Node versions, no support is guaranteed. @azure/identity-cache-persistence
does not support browser environments.
If this is your first time using @azure/identity
or Microsoft Entra ID, we recommend that you read Using @azure/identity
with Microsoft Entra ID first. This document will give you a deeper understanding of the platform and how to configure your Azure account correctly.
As of @azure/identity
version 2.0.0, the Identity client library for JavaScript includes a plugin API. This package (@azure/identity-cache-persistence
) exports a plugin object that you must pass as an argument to the top-level useIdentityPlugin
function from the @azure/identity
package. Enable token cache persistence in your program as follows:
const { useIdentityPlugin } = require("@azure/identity");
const { cachePersistencePlugin } = require("@azure/identity-cache-persistence");
useIdentityPlugin(cachePersistencePlugin);
After calling useIdentityPlugin
, the persistent token cache plugin is registered to the @azure/identity
package and will be available on all credentials that support persistent token caching (those that have tokenCachePersistenceOptions
in their constructor options).
Once the plugin is registered, you can enable token cache persistence by passing tokenCachePersistenceOptions
with an enabled
property set to true
to a credential constructor. In the following example, we use the DeviceCodeCredential
, since persistent caching of its tokens allows you to skip the interactive device-code authentication flow if a cached token is available.
const { useIdentityPlugin, DeviceCodeCredential } = require("@azure/identity");
const { cachePersistencePlugin } = require("@azure/identity-cache-persistence");
useIdentityPlugin(cachePersistencePlugin);
async function main() {
const credential = new DeviceCodeCredential({
tokenCachePersistenceOptions: {
enabled: true,
},
});
// We'll use the Microsoft Graph scope as an example
const scope = "https://graph.microsoft.com/.default";
// Print out part of the access token
console.log((await credential.getToken(scope)).token.substr(0, 10), "...");
}
main().catch((error) => {
console.error("An error occurred:", error);
process.exit(1);
});
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the AZURE_LOG_LEVEL
environment variable to info
. Alternatively, logging can be enabled at runtime by calling setLogLevel
in the @azure/logger
:
const { setLogLevel } = require("@azure/logger");
setLogLevel("info");
If you encounter bugs or have suggestions, please open an issue.
If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.
FAQs
A secure, persistent token cache for Azure Identity credentials that uses the OS secret-management API
We found that @azure/identity-cache-persistence demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.