
Research
/Security News
11 Malicious Go Packages Distribute Obfuscated Remote Payloads
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
aws-billing
Advanced tools
A node API to learn how much your Amazon Web Services hosting costs.
$ npm install aws-billing
First, set up programmatic billing access.
var accountId = '1111-2222-3333';
var key = 'DJ9289DSAKSI2938A';
var secret = 'b/4239+skdj292jd92jd29dj229';
var bucket = 'company-aws-billing';
var region = 'us-west-2';
Then you can query your billing cost:
var billing = require('aws-billing')(accountId, key, secret, bucket, region);
billing(function (err, costs) {
// ..
});
The costs
variable shows the costs for the current billing period by product.
{ total: 4839.25,
start: Thu Jan 01 2015 00:00:00 GMT+0000 (UTC),
end: Thu Jan 08 2015 02:34:50 GMT+0000 (UTC),
products:
{ 'data transfer': 432.12,
'elastic mapreduce': 864.43,
'cloudfront': 124.42,
'support (business)': 120.12,
'elasticache': 124.12,
'simple storage service': 172.46,
'redshift': 423.77,
'elastic compute cloud': 123.32,
'route 53': 454.73 } }
MIT
FAQs
AWS billing API for node
We found that aws-billing demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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 uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).