Metadata-Version: 2.4
Name: sentinel-recon
Version: 1.0.0
Summary: A cybersecurity intelligence CLI tool for ethical security assessment
Author-email: Khizar Arain <your@email.com>
License: MIT License
        
        Copyright (c) 2025 Khizar Arain
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/khizerarain/sentinel
Project-URL: Repository, https://github.com/khizerarain/sentinel
Project-URL: Bug Tracker, https://github.com/khizerarain/sentinel/issues
Keywords: cybersecurity,cli,security,dns,ssl,network,pentesting
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Security
Classifier: Topic :: Internet :: Name Service (DNS)
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer[all]>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: dnspython>=2.4.0
Requires-Dist: python-whois>=0.8.0
Requires-Dist: reportlab>=4.0.0
Dynamic: license-file

# SENTINEL

> Analyze. Detect. Secure.

SENTINEL is a cybersecurity intelligence CLI tool for ethical security assessment of domains and websites. Built for developers, DevOps engineers, security students, and sysadmins.

---

Warning: **Ethical Use Only** - Only scan systems you own or have explicit written permission to test. Unauthorized scanning may be illegal in your jurisdiction.

---

## Features

- Website scanner with security scoring
- SSL certificate checker with expiry warnings
- DNS lookup (A, MX, TXT, NS, AAAA)
- WHOIS domain information
- Security headers analysis
- Port scanner (common ports)
- IP geolocation intelligence
- Cryptographic password generator
- Hash generator (SHA-256, SHA-512, MD5)
- Security report generator (Markdown + PDF)

---

## Installation

```bash
pip install sentinel-recon
```

---

## Usage

```bash
sentinel --help
sentinel scan example.com
sentinel ssl example.com
sentinel dns google.com
sentinel whois openai.com
sentinel headers github.com
sentinel ports example.com
sentinel ip 8.8.8.8
sentinel password --length 24
sentinel hash "Hello World" --algo sha256
sentinel report example.com
```

---

## Tech Stack

- Python 3.10+
- Typer - CLI framework
- Rich - terminal UI
- Requests - HTTP
- dnspython - DNS queries
- python-whois - WHOIS data
- ReportLab - PDF generation

---

## License

MIT (c) Khizar Arain
