
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@evokegroup/aws-ssm
Advanced tools
Helper class for using the AWS SSM service
| Parameter | Type | Default | Description |
|---|---|---|---|
| region | string | The AWS region |
Gets and caches a parameter from the parameter store.
| Parameter | Type | Default | Description |
|---|---|---|---|
| name | string | The parameter name | |
| decrypt | boolean | false | Decrypt the parameter value |
When the Promise is resolved the parameter value will be returned.
const EvokeAwsSsm = require('@evokegroup/aws-ssm');
const ssm = new EvokeAwsSsm({
region: 'us-east-1'
});
ssm.getParameter('myParameter', true)
.then((parameterValue) => {
console.log(parameterValue);
})
.catch((ex) => {
console.log(ex);
});
Gets and caches parameters from the parameter store.
| Parameter | Type | Default | Description |
|---|---|---|---|
| names | Array<string> | The parameter names | |
| decrypt | boolean | false | Decrypt the parameter value |
When the Promise is resolved an object containing the parameter names and values will be returned.
const EvokeAwsSsm = require('@evokegroup/aws-ssm');
const ssm = new EvokeAwsSsm({
region: 'us-east-1'
});
ssm.getParameters(['myParameter', 'anotherParameter'], true)
.then((parameters) => {
Object.keys(parameters).forEach((name) => {
console.log(`${name} = ${parameters[name]}`);
});
})
.catch((ex) => {
console.log(ex);
});
Gets and caches parameters from the parameter store.
| Parameter | Type | Default | Description |
|---|---|---|---|
| path | string | The parameter path | |
| settings | object | {decrypt: false, recursive: true} | Service call settings |
| settings.decrypt | boolean | false | Decrypt the parameter value |
| settings.recursive | boolean | true | Retrieve all parameters under the path |
When the Promise is resolved an object containing the parameter names and values will be returned.
const EvokeAwsSsm = require('@evokegroup/aws-ssm');
const ssm = new EvokeAwsSsm({
region: 'us-east-1'
});
ssm.getParametersByPath('my/parameter/path', {decrypt: true, recursive: true})
.then((parameters) => {
Object.keys(parameters).forEach((name) => {
console.log(`${name} = ${parameters[name]}`);
});
})
.catch((ex) => {
console.log(ex);
});
FAQs
Helper class for using the AWS SSM service
We found that @evokegroup/aws-ssm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.