Add your description here
Project description
Nadzoring
An open source tool for detecting website blocks, downdetecting and network analysis
Explore the docs »
Getting Started
·
Basic Usage
·
Documentation
·
License
Nadzoring (from Russian "надзор" - supervision/oversight + English "-ing" suffix) is a FOSS (Free and Open Source Software) command-line tool for detecting website blocks, monitoring service availability, and network analysis. It helps you investigate network connectivity issues, check if websites are accessible, and analyze network configurations with comprehensive DNS diagnostics.
📋 Table of Contents
- Nadzoring
🚀 Installation
pip install nadzoring
💻 Usage
Nadzoring uses a hierarchical command structure with two main command groups: dns and network-base. All commands support common global options for output formatting and logging.
Global Options
These options are available for all commands:
| Option | Short | Description | Default |
|---|---|---|---|
--verbose |
-v |
Enable verbose output with execution timing | False |
--quiet |
-q |
Suppress non-error output (progress bars, logs) | False |
--no-color |
- | Disable colored output | False |
--output |
-o |
Output format (table, json, csv, html, html_table) |
table |
--save |
- | Save results to file (provide filename) | None |
DNS Commands
The dns command group provides comprehensive DNS analysis and troubleshooting capabilities.
dns resolve
Resolve DNS records for one or more domains with support for multiple record types.
Syntax:
nadzoring dns resolve [OPTIONS] DOMAINS...
Arguments:
DOMAINS...- One or more domain names to resolve (required)
Options:
| Option | Short | Description | Default |
|---|---|---|---|
--type |
-t |
DNS record type (A, AAAA, CNAME, MX, NS, TXT, ALL) | A |
--nameserver |
-n |
Specific nameserver to use | System default |
--short |
- | Compact output like host command style | False |
--show-ttl |
- | Show TTL for each record | False |
--format-style |
- | Output style (standard, bind, host, dig) | standard |
Examples:
# Basic A record lookup
nadzoring dns resolve google.com
# Multiple record types
nadzoring dns resolve -t A -t MX -t TXT example.com
# ALL record types with specific nameserver
nadzoring dns resolve -t ALL -n 8.8.8.8 github.com
# Multiple domains with TTL display
nadzoring dns resolve --show-ttl google.com cloudflare.com
# Short format like host command
nadzoring dns resolve --short --type ALL example.com
dns reverse
Perform reverse DNS lookup (PTR records) for IP addresses.
Syntax:
nadzoring dns reverse [OPTIONS] IP_ADDRESSES...
Arguments:
IP_ADDRESSES...- One or more IP addresses to look up (required)
Options:
| Option | Short | Description |
|---|---|---|
--nameserver |
-n |
Specific nameserver to use |
Examples:
# Basic reverse lookup
nadzoring dns reverse 8.8.8.8
# Multiple IPs
nadzoring dns reverse 1.1.1.1 8.8.8.8 9.9.9.9
# Using specific nameserver
nadzoring dns reverse -n 208.67.222.222 8.8.4.4
dns check
Perform comprehensive DNS check including validation of MX priorities and TXT records (SPF/DKIM).
Syntax:
nadzoring dns check [OPTIONS] DOMAINS...
Arguments:
DOMAINS...- One or more domain names to check (required)
Options:
| Option | Short | Description | Default |
|---|---|---|---|
--nameserver |
-n |
Specific nameserver to use | System default |
--types |
-t |
Record types to check (A, AAAA, CNAME, MX, NS, TXT, ALL) | ALL |
Features:
- MX record validation (duplicate priority detection)
- TXT record validation (SPF policy checks, DKIM key presence)
- Comprehensive error reporting
Examples:
# Complete DNS check
nadzoring dns check example.com
# Check specific record types
nadzoring dns check -t MX -t TXT gmail.com
# Multiple domains with custom nameserver
nadzoring dns check -n 9.9.9.9 google.com cloudflare.com
dns trace
Trace the DNS resolution path from root servers to authoritative nameservers.
Syntax:
nadzoring dns trace [OPTIONS] DOMAIN
Arguments:
DOMAIN- Domain name to trace (required)
Options:
| Option | Short | Description |
|---|---|---|
--nameserver |
-n |
Starting nameserver (default: a.root-servers.net - 198.41.0.4) |
Output shows:
- Each hop with nameserver IP
- Response time per nameserver
- Records returned at each level
- Delegation information
- Final authoritative answer
Examples:
# Trace from root servers
nadzoring dns trace example.com
# Trace starting from specific nameserver
nadzoring dns trace -n 8.8.8.8 google.com
# Verbose trace with timing
nadzoring dns trace -v github.com
dns compare
Compare DNS responses from different nameservers to detect discrepancies.
Syntax:
nadzoring dns compare [OPTIONS] DOMAIN
Arguments:
DOMAIN- Domain name to compare (required)
Options:
| Option | Short | Description | Default |
|---|---|---|---|
--servers |
-s |
DNS servers to compare | 8.8.8.8, 1.1.1.1, 9.9.9.9 |
--type |
-t |
Record types to compare | A |
Features:
- Response time comparison
- Record consistency checking
- Automatic discrepancy detection
- Progress indicator for multiple queries
Examples:
# Compare A records across default servers
nadzoring dns compare example.com
# Compare MX records with custom servers
nadzoring dns compare -t MX -s 8.8.8.8 -s 208.67.222.222 -s 9.9.9.9 gmail.com
# Multiple record types
nadzoring dns compare -t A -t AAAA -t NS cloudflare.com
dns health
Perform comprehensive DNS health check with scoring system.
Syntax:
nadzoring dns health [OPTIONS] DOMAIN
Arguments:
DOMAIN- Domain name to check (required)
Options:
| Option | Short | Description |
|---|---|---|
--nameserver |
-n |
Nameserver to use for checks |
Health Scoring:
- 80-100: Healthy - All records properly configured
- 50-79: Degraded - Some issues detected
- 0-49: Unhealthy - Critical configuration problems
Validation includes:
- Record presence for all standard types
- MX priority uniqueness
- SPF policy completeness
- DKIM key presence
- CNAME configuration rules
- Subdomain-specific checks
Examples:
# Basic health check
nadzoring dns health example.com
# Health check with custom nameserver
nadzoring dns health -n 1.1.1.1 google.com
# Verbose health report
nadzoring dns health -v github.com
Network Base Commands
The network-base command group provides basic network operations and diagnostics.
ping
Ping one or more addresses to check reachability.
Syntax:
nadzoring network-base ping [OPTIONS] ADDRESSES...
Arguments:
ADDRESSES...- One or more IP addresses or hostnames (required)
Examples:
# Ping single address
nadzoring network-base ping 8.8.8.8
# Multiple addresses
nadzoring network-base ping google.com cloudflare.com 1.1.1.1
# JSON output
nadzoring network-base ping -o json github.com
geolocation
Get geolocation information for IP addresses.
Syntax:
nadzoring network-base geolocation [OPTIONS] IPS...
Arguments:
IPS...- One or more IP addresses (required)
Output includes:
- Latitude/Longitude
- Country
- City
Examples:
# Geolocate IPs
nadzoring network-base geolocation 8.8.8.8 1.1.1.1
# Save results
nadzoring network-base geolocation --save locations.json 8.8.8.8
params
Display detailed network configuration parameters of your system.
Syntax:
nadzoring network-base params [OPTIONS]
Output includes:
- Default interface name
- IPv4 address
- IPv6 address
- Router (gateway) IP
- MAC address
- Public IP address
Examples:
# Basic network info
nadzoring network-base params
# JSON output for scripting
nadzoring network-base params -o json
# Save configuration
nadzoring network-base params --save network_config.json
host-to-ip
Resolve hostnames to IP addresses with IPv4/IPv6 availability checking.
Syntax:
nadzoring network-base host-to-ip [OPTIONS] HOSTNAMES...
Arguments:
HOSTNAMES...- One or more domain names (required)
Output includes:
- Resolved IP address
- IPv4 connectivity check
- IPv6 connectivity check
- Router IPv4/IPv6 addresses
Examples:
# Resolve multiple domains
nadzoring network-base host-to-ip google.com github.com cloudflare.com
# CSV output for analysis
nadzoring network-base host-to-ip -o csv --save resolutions.csv example.com
port-service
Identify which service typically runs on specified ports.
Syntax:
nadzoring network-base port-service [OPTIONS] PORTS...
Arguments:
PORTS...- One or more port numbers (required)
Examples:
# Check common ports
nadzoring network-base port-service 80 443 22 53 3306
# JSON output for integration
nadzoring network-base port-service -o json 8080 5432 27017
📊 Output Formats
Nadzoring supports four output formats controlled by the -o/--output flag:
Table Format (default)
┌─────────────┬────────┬─────────────┐
│ domain │ type │ value │
├─────────────┼────────┼─────────────┤
│ example.com │ A │ 93.184.216.34│
│ example.com │ MX │ 10 mail.example.com│
└─────────────┴────────┴─────────────┘
JSON Format
[
{
"domain": "example.com",
"type": "A",
"value": "93.184.216.34"
}
]
CSV Format
domain,type,value
example.com,A,93.184.216.34
HTML Format
Generates styled HTML tables or complete web pages with CSS styling.
💾 Saving Results
Use the --save option to save command output to a file. The format is determined by the -o/--output flag:
# Save DNS check as HTML report
nadzoring dns check -o html --save dns_report.html example.com
# Save comparison as CSV
nadzoring dns compare -o csv --save comparison.csv google.com
# Save trace as JSON
nadzoring dns trace -o json --save trace.json cloudflare.com
📝 Logging Levels
Nadzoring provides three logging modes:
- Normal mode (no flags): Shows command output and warnings with progress bars
- Verbose mode (
-v/--verbose): Shows detailed execution information, timing, and debug logs - Quiet mode (
-q/--quiet): Suppresses progress bars and non-error output, ideal for scripting
🔍 Examples
DNS Diagnostics
# Complete DNS investigation workflow
nadzoring dns health example.com
nadzoring dns trace example.com
nadzoring dns compare -t A -t MX example.com
nadzoring dns check -t ALL -v example.com
Complete Network Diagnostics
# Run comprehensive network diagnostics
nadzoring network-base params -v
nadzoring network-base host-to-ip google.com cloudflare.com github.com
nadzoring network-base ping 8.8.8.8 1.1.1.1 google.com
nadzoring network-base geolocation 8.8.8.8 1.1.1.1
Automated Monitoring Script
#!/bin/bash
# Check DNS health and network status with timestamp
TIMESTAMP=$(date +%Y%m%d_%H%M%S)
# DNS health check
nadzoring dns health -o json --save "dns_health_${TIMESTAMP}.json" example.com
# DNS trace
nadzoring dns trace -o html --save "dns_trace_${TIMESTAMP}.html" example.com
# Network parameters
nadzoring network-base params -o csv --save "network_${TIMESTAMP}.csv"
Quick Website Block Check
# Check if a website might be blocked
nadzoring dns resolve -t ALL example.com
nadzoring dns trace example.com
nadzoring network-base ping example.com
nadzoring dns compare example.com
Contributing
We welcome contributions! Please see CONTRIBUTING.md for guidelines. Key areas for contribution include:
- Additional DNS record type support
- New validation rules for health checks
- Performance optimization
- Additional output formats
- IDE integration plugins
License & Support
This project is licensed under GNU LGPL 2.1 License - see LICENSE. For commercial support and enterprise features, contact alexeev.dev@mail.ru.
Explore Documentation | Report Issue |
Copyright © 2025 Alexeev Bronislav. Distributed under GNU GPL v3 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nadzoring-0.1.2.tar.gz.
File metadata
- Download URL: nadzoring-0.1.2.tar.gz
- Upload date:
- Size: 141.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e44ecf666c4a0ec00c723453eb84d12a2de68bdc27c00575a4078419cbfe817
|
|
| MD5 |
9654f54eac2c16fae3aed319ef7ae9a8
|
|
| BLAKE2b-256 |
903eeda28097b1559fb4d0df3f1ec691fb4696095330f14743da64d41f9f19cd
|
File details
Details for the file nadzoring-0.1.2-py3-none-any.whl.
File metadata
- Download URL: nadzoring-0.1.2-py3-none-any.whl
- Upload date:
- Size: 40.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a90cae9ed7e6c1cb2ed476b4b60954f26aad3a03bd276255cc18217551d0f80
|
|
| MD5 |
e9eebdf4640ed5591ce976b2825dc935
|
|
| BLAKE2b-256 |
4a0983c6256c9a9012ffc602379bfbb0456651dedb66a1cfd28b7f52a1291947
|