https://github.com/aditi-rani/https-checker
A Python CLI tool to check if a website uses HTTPS and whether all external resources (images, scripts, stylesheets) are also loaded securely.
https://github.com/aditi-rani/https-checker
beautifulsoup python3 requests seotools
Last synced: about 3 hours ago
JSON representation
A Python CLI tool to check if a website uses HTTPS and whether all external resources (images, scripts, stylesheets) are also loaded securely.
- Host: GitHub
- URL: https://github.com/aditi-rani/https-checker
- Owner: Aditi-Rani
- License: mit
- Created: 2025-05-19T18:49:09.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-19T18:50:45.000Z (5 months ago)
- Last Synced: 2025-05-31T08:57:31.637Z (5 months ago)
- Topics: beautifulsoup, python3, requests, seotools
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🔐 HTTPS Checker
A Python CLI tool to check if a website uses HTTPS and whether all external resources (images, scripts, stylesheets) are also loaded securely.
---
## ✅ Features
- Verifies if the website uses HTTPS
- Parses the page to check for insecure (`http://`) resources
- Reports any mixed content issues
- CLI-based tool: easy to use during audits---
## 🛠 Tech Used
- Python `requests`
- `BeautifulSoup` (bs4)
- `urllib.parse` for resource handling---
## 🚀 How to Run
### 1. Clone the repository
```bash
https://github.com/Aditi-Rani/https-checker
```
```bash
cd https-checker
```### 2. Install dependencies
```bash
pip install -r requirements.txt
```
### 3. Run the script
```bash
python https_checker.py
```