
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
nscale-aws-analyzer
Advanced tools
Analyze your AWS deployment done by nscale.
npm install nscale-aws-analyzer -g
nscale-aws-analyzer ./config.js
{
"mcollina": {
"name": "mcollina status on 2014-06-09T16:48:50.602Z",
"namespace": "mcollina",
"id": "eef0a0a0-eff5-11e3-aeca-21cba7b24b1c",
"containerDefinitions": [
{
"id": "ami-fb8e9292",
"type": "ami",
"specific": {
"notManaged": true
}
}
],
"topology": {
"containers": {
"instance1": {
"id": "instance1",
"specific": {
"imageId": "ami-fb8e9292",
"instanceId": "i-f2bbc5a1",
"publicIpAddress": "54.198.3.251",
"privateIpAddress": "10.185.235.8"
}
},
"instance2": {
"id": "instance2",
"specific": {
"imageId": "ami-fb8e9292",
"instanceId": "i-cea2dc9d",
"publicIpAddress": "184.73.96.113",
"privateIpAddress": "10.155.178.230"
}
}
}
}
}
}
The config.js
file is the very same of aws-sdk.
For embedded usage see analyze.js file.
var fs = require('fs')
, configFile = process.argv[2]
, analyze = require('./')
, AWS = require('aws-sdk')
, config
if (!configFile) {
console.log('Missing config')
process.exit(-1)
}
try {
AWS.config.loadFromPath(configFile)
} catch(err) {
console.log(err)
console.log('unable to read', configFile)
process.exit(-1)
}
analyze(function(err, status) {
if (err) {
console.log(err)
process.exit(1)
}
console.log(JSON.stringify(status, null, 2))
})
Each AMI and instance must be tagged with:
nfd-id
: the id on NFDnfd-namespace
: the namespace on NFDNon-tagged AMI will be added with notManaged: true
in their specific
property.
Each container must have the name in this pattern:
nfd-<namespace>-<id>
.
Each image must be tagged with this pattern:
nfd:<namespace>-<id>
.
FAQs
Analyze your AWS deployment!
The npm package nscale-aws-analyzer receives a total of 2 weekly downloads. As such, nscale-aws-analyzer popularity was classified as not popular.
We found that nscale-aws-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.