Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
aws-ip-address-lookup
Advanced tools
aws-ip-address-lookup is a node.js module for looking up Amazon Web Services (AWS) IP address details.
npm install aws-ip-address-lookup
const AwsIPAddressLookup = require("aws-ip-address-lookup");
let awsIPAddressLookup = new AwsIPAddressLookup();
awsIPAddressLookup.lookup('54.255.183.252', function (err, details) {
if (!err) {
console.log(JSON.stringify(details));
}
});
Result:
{
"ipAddress": "54.255.183.252",
"ipPrefix": "54.255.0.0/16",
"region": "ap-southeast-1",
"service": "AMAZON"
}
const AwsIPAddressLookup = require("aws-ip-address-lookup");
let awsIPAddressLookup = new AwsIPAddressLookup();
awsIPAddressLookup.lookup(['54.255.183.252', '127.0.0.1', '2620:0107:300f:0000:0000:0000:0000:0000'], (err, details) => {
if (!err) {
console.log(JSON.stringify(details));
}
});
Result:
[
{
ipAddress: "54.255.183.252",
ipPrefix: "54.255.0.0/16",
region: "ap-southeast-1",
service: "AMAZON"
},
{
ipAddress: "127.0.0.1",
ipPrefix: "",
region: "",
service: ""
},
{
ipAddress: "2620:0107:300f:0000:0000:0000:0000:0000",
ipPrefix: "2620:107:300f::/64",
region: "us-west-1",
service: "AMAZON"
}
]
aws-ip-address-lookup module adheres to Semantic Versioning.
FAQs
Amazon Web Services (AWS) IP address lookup
The npm package aws-ip-address-lookup receives a total of 3 weekly downloads. As such, aws-ip-address-lookup popularity was classified as not popular.
We found that aws-ip-address-lookup 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 researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.