Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1,518 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿงฐ MyIP - A Better IP Toolbox

IPCheck.ing Banner

jason5ng32%2FMyIP | Trendshift

Mentioned in Awesome Self Hosted

GitHub Repo stars GitHub forks Docker Pulls

Website PWA

CodeQL Docker Build and Push

๐Ÿ‡บ๐Ÿ‡ธ English | ๐Ÿ‡จ๐Ÿ‡ณ ็ฎ€ไฝ“ไธญๆ–‡ | ๐Ÿ‡ท๐Ÿ‡บ ะ ัƒััะบะธะน | ๐Ÿ‡ซ๐Ÿ‡ท Franรงais

๐Ÿ‘‰ Demo: https://ipcheck.ing

Feel free to bookmark the demo or deploy your own.

Deploy with Docker

๐Ÿ‘€ Main Features

  • ๐Ÿ›œ View Your IPs: Detects and displays your local IPs, sourcing from multiple IPv4 and IPv6 providers.
  • ๐Ÿ” Search IP Information: Provides a tool for querying information about any IP address.
  • ๐Ÿ•ต๏ธ IP Information: Presents detailed information for all IP addresses, including country, region, ASN, geographic location, and more.
  • ๐Ÿ›ฐ๏ธ ASN History & Upstream Topology: View historical AS announcements for an IP prefix, and visualize the upstream paths from an ASN to the Tier 1 backbone networks.
  • ๐Ÿšฆ Availability Check: Tests the accessibility of various websites, such as Google, GitHub, YouTube, ChatGPT, and others.
  • ๐Ÿ“ก Service Status: Shows the live availability of well-known services (Claude, OpenAI, GitHub, Cloudflare, and more) from their official status pages, with per-service status and recent incidents.
  • ๐Ÿšฅ WebRTC Detection: Identifies the IP address used during WebRTC connections.
  • ๐Ÿ›‘ DNS Leak Test: Shows DNS endpoint data to evaluate the risk of DNS leaks when using VPNs or proxies.
  • ๐Ÿš€ Speed Test๏ผšTest your network speed with edge networks.
  • ๐Ÿš Proxy Rule Testing: Test the rule settings of proxy software to ensure their correctness.
  • โฑ๏ธ Global Latency Test: Performe lantency tests on servers located in different regions around the world.
  • ๐Ÿš‰ MTR Test: Perform MTR tests on servers located in different regions around the world.
  • ๐Ÿ”ฆ DNS Resolver: Performs DNS resolution of a domain name from multiple sources and obtains real-time resolution results that can be used for contamination determination.
  • ๐Ÿšง Censorship Check: Check if a website is blocked in some countries.
  • ๐Ÿ““ Whois Search: Perform whois information search for domain names or IP addresses
  • ๐Ÿ“€ MAC Lookup: Query information of a physical address
  • ๐Ÿ–ฅ๏ธ Browser Fingerprints๏ผšMultiple ways to caculate your browser fingerprint
  • ๐Ÿ“‹ Cybersecurity Checklist๏ผšA comprehensive cybersecurity checklist with a total of 258 items

๐Ÿ’ช Also

  • ๐ŸŒ— Dark Mode: Automatically toggles between dark and daylight modes based on system settings, with an option for manual switching.
  • ๐Ÿ“ฒ PWA Supported๏ผšCan be added as a desktop app on your phone as well as a Chrome app on your computer.
  • โŒจ๏ธ Keyboard Shortcuts: Supports keyboard shortcuts for all functions, press ? to view the shortcut list.
  • ๐ŸŒ Based on availability test results, it indicates whether global internet access is currently feasible.
  • ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡ท๐Ÿ‡บ ๐Ÿ‡ซ๐Ÿ‡ท English, Chinese, Russian, French support.

๐Ÿ“• How to Use

Deploying in a Node Environment

Make sure you have Node.js installed.

Clone the code:

git clone https://github.com/jason5ng32/MyIP.git

Install and build. This project uses pnpm โ€” if you don't have it, install it first (npm ships with Node, so this command always works):

npm install -g pnpm
pnpm install && pnpm run build

Run:

pnpm start

The program will run on port 18966.

Using Docker

Click the 'Deploy to Docker' button at the top to complete the deployment. Or, use the following shell:

docker run -d -p 18966:18966 --name myip --restart always jason5ng32/myip:latest

๐Ÿ“– Documentation

Full guides live in the MyIP Docs Center: docs.ipcheck.ing

  • Developer Guide โ€” deployment, configuration, architecture, and contributing
  • Knowledge Base โ€” how to use every tool, step-by-step network diagnosis, and networking concepts

โš™๏ธ Configuration

Two settings matter before anything else:

  • MaxMind GeoLite2 (required) โ€” free credentials that power IP geolocation and ASN lookups. Without them, the MaxMind source returns 503. โ†’ MaxMind Setup
  • ALLOWED_DOMAINS (required on a real domain) โ€” hostname allowlist for the backend API. Without it, every request from a non-localhost domain gets 403. โ†’ Reverse Proxy & Domains
docker run -d -p 18966:18966 \
  -e MAXMIND_ACCOUNT_ID="YOUR_ACCOUNT_ID" \
  -e MAXMIND_LICENSE_KEY="YOUR_LICENSE_KEY" \
  -e MAXMIND_AUTO_UPDATE="true" \
  -e ALLOWED_DOMAINS="your-domain.com" \
  --name myip --restart always \
  jason5ng32/myip:latest

Everything else โ€” optional API keys, security & rate limiting, logging, Sentry, the curl API domains โ€” is documented in the Environment Variables reference.

๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป Advanced Usage

If you're using a proxy for internet access, consider adding this rule to your proxy configuration (modify it according to your client). This setup lets you check both your real IP and the IP when using the proxy:

# IP Testing
IP-CIDR,1.0.0.2/32,Proxy,no-resolve
IP-CIDR6,2606:4700:4700::1111/128,Proxy,no-resolve
DOMAIN,4.ipcheck.ing,DIRECT
DOMAIN,6.ipcheck.ing,DIRECT
# Rule Testing
DOMAIN,ptest-1.ipcheck.ing,Proxy1
DOMAIN,ptest-2.ipcheck.ing,Proxy2
DOMAIN,ptest-3.ipcheck.ing,Proxy3
DOMAIN,ptest-4.ipcheck.ing,Proxy4
DOMAIN,ptest-5.ipcheck.ing,Proxy5
DOMAIN,ptest-6.ipcheck.ing,Proxy6
DOMAIN,ptest-7.ipcheck.ing,Proxy7
DOMAIN,ptest-8.ipcheck.ing,Proxy8

๐Ÿ’– Sponsors

As a open source project, I'm very grateful to the following sponsors for their support:

1Password

Greptile

Sentry

GitBook

Cloudflare Project Alexandria

About

The best IP Toolbox. Check your IP address & geolocation, test IP for WebRTC and DNS IP leaks, run an IP quality check, browser fingerprint check, website availability check, network speed test, global latency test, MTR test, Whois search, and more.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages