Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Just wraps commandline calls to aws with some predefined filters for amis, instances, public and private dns data.
You have to install all the amazon tools you'd like to use (eg. ec2, elb, autoscaling tools).
The environment variables for the tools have to be configured. Something like:
EC2_HOME=/opt/ec2-api-tools EC2_AMITOOL_HOME=/opt/ec2-ami-tools AWS_AUTO_SCALING_HOME=/opt/AutoScaling AWS_CLOUDWATCH_HOME=/opt/CloudWatch AWS_ELB_HOME=/opt/ElasticLoadBalancing EC2_PRIVATE_KEY="your-aws-private-key" EC2_CERT="your-aws-certificate" EC2_ACCESS_KEY="your-aws-access-key" EC2_SECRET_KEY="your-aws-secret" AWS_CREDENTIAL_FILE=your-credential-file EC2_REGION=eu-west-1 EC2_KEYPAIR_EU_WEST_1=your-aws-key-pair
Then just install the module with npm.
npm install aws
var aws = require('aws'); aws.setRegion('eu-west-1'); aws.init(['ec2', 'aws_elb', 'aws_auto_scaling'], function(apis) { apis.ec2.describe_instances.public_dns(function(instances) { sys.puts(sys.inspect(instances)); // lists all public dns of your ec2 instances }); });
FAQs
evil wrapper for the amazon command line tools
The npm package aws receives a total of 17,717 weekly downloads. As such, aws popularity was classified as popular.
We found that aws 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.