Skip to content

Cloudflare DNS Checker is a Node.js script designed to verify and display your DNS over HTTPS (DoH) or DoT settings and connection information. The script uses Puppeteer to automate the retrieval of connection information from Cloudflare's 1.1.1.1/help page and outputs detailed DNS diagnostics.

License

Notifications You must be signed in to change notification settings

o-Oby/cloudflare-dns-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Cloudflare DNS Checker

This script uses Puppeteer to launch a headless Chromium browser and navigate to the Cloudflare 1.1.1.1 help page. It fetches and logs various connection details such as DNS settings, Cloudflare Data Center, and resolver IPs.

Prerequisites

Ensure you have Node.js and npm installed on your system. You will also need to have Chromium installed along with Puppeteer Extra and its plugins.

Installation of Chromium on Debian-based systems

sudo apt-get update
sudo apt-get install chromium-browser

Installation of Puppeteer Extra

npm install puppeteer-extra
npm install puppeteer-extra-plugin-stealth

Usage

  1. Clone the repository

    git clone https://github.com/o-Oby/cloudflare-dns-checker.git
    cd cloudflare-dns-checker
  2. Create the script file

    Create a JavaScript file (e.g., cloudfare_dns_checker.js) and copy the provided script into the file.

  3. Run the script

    node cloudflare-dns-checker.js

Script Explanation

This script does the following:

  1. Launches a headless Chromium browser with specific arguments for performance.
  2. Navigates to the Cloudflare 1.1.1.1 help page and waits until the network is idle.
  3. Fetches connection details:
    • Whether connected to 1.1.1.1
    • Whether using DNS over HTTPS (DoH)
    • Whether using DNS over TLS (DoT)
    • Whether using DNS over WARP
    • AS Name
    • AS Number
    • Cloudflare Data Center
  4. Fetches resolver IPs and their statuses.
  5. Logs all the fetched information.

Example Output

Fetching connection information...
Connected to 1.1.1.1: Yes
Using DNS over HTTPS (DoH): Yes
Using DNS over TLS (DoT): No
Using DNS over WARP: No
AS Name: AS12345
AS Number: 12345
Cloudflare Data Center: ABC
Resolver IP Addresses:
  - 1.1.1.1: OK
  - 1.0.0.1: OK

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

Cloudflare DNS Checker is a Node.js script designed to verify and display your DNS over HTTPS (DoH) or DoT settings and connection information. The script uses Puppeteer to automate the retrieval of connection information from Cloudflare's 1.1.1.1/help page and outputs detailed DNS diagnostics.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published