
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Twenty is a small package to help you get location (city/region and lat/lon coordinates) and ISP data from an IP address or URL. Other utilities are provided, like a method that provides the approximate distance between two IP addresses. All of this can also be done by specifying the FQDN, like "stackabuse.com" or "google.com".
For location data, the ipinfo.io REST service is used.
Twenty was created in conjunction with this article.
Twenty can be installed as a project dependency or global CLI tool:
$ [sudo] npm install twenty [-g]
There are two ways to use this package: through the command line or by within your code.
$ twenty [command] [ip | url] [-j]
Twenty takes an optional IP (or URL) address as an argument. If one isn't given, then your own IP address is used. If you're using the distance
command, then you must provide at least one IP/URL, and optionally two.
The -j
flag will print out all of the IP location info JSON format.
$ twenty stackabuse.com -j
{
"ip": "54.173.122.231",
"hostname": "ec2-54-173-122-231.compute-1.amazonaws.com",
"city": "Ashburn",
"region": "Virginia",
"country": "US",
"loc": "39.0437,-77.4875",
"org": "AS14618 Amazon.com, Inc.",
"postal": "20147"
}
Twenty can also be used programmatically. Currently, the functions provided are info()
and distance()
.
info()
: Provides you with all the IP info as a JavaScript objectdistance()
: Calculates the distance between two IPs/URLs in kilometersvar twenty = require('twenty');
twenty.info('8.8.8.8', function(err, data) {
console.log('Google\'s DNS server is located at:', data.loc);
});
twenty.distance('8.8.8.8', '54.173.122.231', function(err, distance) {
console.log('Distance between Google\'s DNS and stackabuse.com server (km):', distance);
});
Since Twenty uses the ipinfo.io REST service for getting location information, you'll need to be aware of your usage. The daily limit for free usage is 1,000 requests per day. Check the ipinfo.io About page for more information.
The name 'Twenty' came from the phrase "What's your 20?", which came from the police 10-code "10-20", which means "identify your position" or "where are you?".
Copyright (c) 2016 Scott Robinson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Locates the city/region of a given IP address
The npm package twenty receives a total of 1 weekly downloads. As such, twenty popularity was classified as not popular.
We found that twenty 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.