Domain Intelligence Platform — WHOIS Lookup · Bulk Analysis · DNS Tools
Carbon Intelligence is a complete reimagining of the original Bulk WHOIS Checker. The application has been rebuilt from the ground up with a modern architecture and enhanced functionality.
| Before | After |
|---|---|
| Bulk WHOIS Checker | Carbon Intelligence |
| Multi-page navigation | Single Page Application (SPA) |
| Bootstrap UI | Custom lightweight CSS |
The codebase has been modernized with a clean MVC-style structure:
whoischecker/
├── public/ # Web root (point your server here)
│ ├── index.php # Single entry point
│ └── assets/ # CSS, JS, images
├── src/ # Application core
│ ├── Controllers/ # Request handlers
│ ├── Services/ # Business logic (WHOIS, DNS)
│ └── Kernel/ # Router, Container
├── routes/ # Route definitions
├── templates/ # View templates
└── vendor/ # Composer dependencies
Instant WHOIS intelligence for any domain with comprehensive data:
- Domain Name & Registrar
- Owner Information
- Creation, Updated & Expiry Dates
- Name Servers & WHOIS Server
- Domain Status & DNSSEC
Process thousands of domains efficiently:
- Upload
.txtor.csvfiles (up to 5,000 domains) - Real-time progress tracking
- CSV Export for complete reports
Query DNS records across 11 record types:
- A, AAAA, CNAME, MX, TXT, NS, SOA, PTR, SRV, CAA, ANY
- PHP 8.1 or higher
- Composer
- Web server (Apache, Nginx, or IIS)
- Internet connection for WHOIS queries
-
Clone the repository
git clone https://github.com/anonymousraft/whoischecker.git cd whoischecker -
Install dependencies
composer install
-
Configure your web server to point to the
/publicdirectory -
Access the application at
http://your-domain/
Configuration files are included for all major web servers:
- Apache:
.htaccessin/public(requiresmod_rewrite) - Nginx: See
nginx.conf.example - IIS:
web.configin/public(requires URL Rewrite Module)
You can customize the application by creating a .env file in the project root. Copy the included .env.example to start:
cp .env.example .env| Option | Default | Description |
|---|---|---|
APP_DEBUG |
false |
Enable detailed error messages |
BULK_DOMAIN_LIMIT |
5000 |
Maximum domains allowed per bulk upload |
BULK_RATE_DELAY |
250 |
Delay between bulk requests in ms |
WHOIS_TIMEOUT |
10 |
Timeout for WHOIS queries in seconds |
DNS_PROVIDER |
cloudflare |
DNS provider (cloudflare or google) |
GNU General Public License v3.0 — free to use, modify, and distribute.
Built by @anonymousraft
Pull requests are welcome! Create an issue for bugs or feature requests.