Skip to content

sharevb/network-utils-ws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📘 Network Utilities Service — README

A modular FastAPI service providing network‑level diagnostic tools:

  • TLS certificate checks
  • HSTS validation
  • HTTP→HTTPS redirect analysis
  • DNS queries
  • WHOIS lookups
  • DNSSEC validation
  • Reverse DNS
  • SOA + AXFR tests

The service exposes clean JSON APIs suitable for automation, monitoring, and security auditing.

🚀 Features

  • Certificate inspection (expiry, SAN, issuer, subject)
  • HSTS header parsing (max‑age, preload, includeSubDomains)
  • Redirect chain tracing
  • DNS record proxy (A, AAAA, MX, TXT, etc.)
  • WHOIS raw + parsed output
  • DNSSEC RRSET validation
  • Reverse DNS (PTR)
  • SOA + AXFR zone transfer test
  • Built‑in /health endpoint for container orchestration

CORS enabled by default

CORS "*" is enabled by default. You can disable it by setting DISABLE_CORS=true environment variable.

Requests timeout

DNS/HTTP Query timeout can be controlled by setting REQUEST_TIMEOUT=XXX environment variable.

Running in Docker

Pull latest image:

docker pull sharevb/network-utils-ws:latest

Run it with access to the host Docker daemon:

docker run \
  -p 8000:8000 \
  sharevb/network-utils-ws:latest

🧰 Development

Install dependencies:

pip install -r requirements.txt

Run locally:

uvicorn main:app --reload

📄 License

MIT

About

A modular FastAPI service providing network‑level diagnostic tools

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors