Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@relaycorp/awala-keystore-cloud
Advanced tools
Awala Key Store powered GCP services and JavaScript
@relaycorp/awala-keystore-cloud
is a Node.js library that implements Awala keystores across a range of cloud providers and open source backing services, so that server-side apps can be deployed to a wide variety of platforms.
This documentation is aimed at developers integrating the library and/or seeking to contribute to the project. If you're the operator of an app powered by this library, please refer to the docs on docs.relaycorp.tech.
The library is available on NPM as @relaycorp/awala-keystore-cloud
, and you can install it as follows:
npm i @relaycorp/awala-keystore-cloud
The configuration of the adapter is done via environment variables, so the actual initialisation of the store is done with a simple function call. For example:
import {
Adapter,
initPrivateKeystoreFromEnv,
} from '@relaycorp/awala-keystore-cloud';
import type { PrivateKeyStore } from '@relaycorp/relaynet-core';
import type { Connection } from 'mongoose';
function initPrivateKeystore(dbConnection: Connection): PrivateKeyStore {
return initPrivateKeystoreFromEnv(Adapter.GCP, dbConnection);
}
The following environment variables must be defined depending on the adapter:
KS_GCP_LOCATION
(for example, europe-west3
).KS_KMS_KEYRING
: The KMS keyring holding all the keys to be used.KS_KMS_ID_KEY
: The name of the KMS key whose versions will back Awala identity keys.KS_KMS_SESSION_ENC_KEY
: The name of the KMS key used to encrypt Awala session keys.KS_VAULT_URL
: The URL to Vault.KS_VAULT_TOKEN
: The user's access token.KS_VAULT_KV_PREFIX
: The path prefix for the key-value backend.The unit test suite can be run the standard way on Node.js: npm test
.
The integration tests aren't currently run on CI, and can be run with npm run test:integration:local
. Note that some environments variables must be set, and others are optional:
GOOGLE_APPLICATION_CREDENTIALS
(required), using a service account. All GCP resources will be created within the same project where the service account lives. The GCP service account should be allowed to manage KMS resources.GCP_LOCATION
(default: europe-west3
). The location where resources will be created.The test suite will automatically delete all the resources it created, except for those that can't be deleted (e.g., GPC KMS key rings). Existing resources are not modified. However, this may not always be true due to bugs, so always create a brand new, temporary GCP project.
FAQs
Awala Key Store powered GCP services and JavaScript
We found that @relaycorp/awala-keystore-cloud demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.