
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
myipms-api-client
Advanced tools
Query Myip.ms data using API
npm install myipms-api-client
You can get apiId and apiKey by registering an account at myip.ms. Free plan is available and can be used.
const myipms = require('myipms-api-client');
(async () => {
const apiId = 'PLEASE_CHANGE_IT_TO_YOUR_APIID_FROM_MYIPMS';
const apiKey = 'PLEASE_CHANGE_IT_TO_YOUR_APIKEY_FROM_MYIPMS';
const result = await myipms(apiId, apiKey, '185.199.108.153');
})();
result will contain something like these:
{
"query": "185.199.108.153",
"ip_address": "185.199.108.153",
"status": "ok",
"location": {
"countryID": "USA",
"countryName": "United States",
"countryIcon": "https://myip.ms/images/devices/16/flags/USA.png"
},
"owners": {
"owner": {
"range": "185.199.108.0 - 185.199.111.255",
"cidr": "185.199.108.0/22",
"rangeSize": "1024",
"ownerName": "Github, Inc",
"provider": "",
"address": "88 Colin P. Kelly Jr. Street, 94107, San Francisco, United States",
"countryID": "USA",
"countryName": "USA",
"countryIcon": "https://myip.ms/images/devices/16/flags/USA.png",
"website": "",
"phone": "+1 415 735 4488",
"sites": "22274",
"topSites": "185",
"logo": "",
"screenshot": "",
"link": "https://myip.ms/view/ip_owners/802978"
}
},
"statistics": {
"total_websites_on_ip_now": "21396",
"total_websites_on_ip_before": "9696",
"total_not_working_websites_on_ip": "975",
"total_dns_on_ip": 1,
"total_os_on_ip": 0,
"total_browsers_on_ip": 0,
"total_useragents_on_ip": 0
},
"crawlerbot_use_ip": "yes",
"ip_blacklist": {
"blacklist": "yes",
"latest_thread": "User Submission - Spam from this IP",
"latest_site_visit_date": "06 Dec 2018"
},
"websites_on_ip_now": [
{
"website": "nn.ci",
"rank": "1914",
"visitors": "203000",
"image": "https://myip.ms/images/popularity/rating9.png",
"text": "203,000 visitors per day"
},
{
"website": "pytorch.org",
"rank": "2758",
"visitors": "159000",
"image": "https://myip.ms/images/popularity/rating9.png",
"text": "159,000 visitors per day"
},
// ...
],
"dns_on_ip": [
{
"nameserver": "185.199.108.153",
"sites": "1",
"topSites": "0"
}
],
"os_on_ip": [],
"browsers_on_ip": [],
"useragents_on_ip": []
}
API will only return 100 websites. There is no documented API to get next page on myip.ms.
My other reverse ip npm package:
FAQs
Query Myip.ms data using API
The npm package myipms-api-client receives a total of 0 weekly downloads. As such, myipms-api-client popularity was classified as not popular.
We found that myipms-api-client 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.