Share
## https://sploitus.com/exploit?id=67C73882-1BED-54BB-A661-C7B072B21F4F
# HTTPS File Server
A secure HTTPS file server implemented in Go, designed to serve static files over encrypted connections with self-signed certificate support.
## Features
- Serves static files over HTTPS
- Automatic self-signed certificate generation
- Request logging with response codes and timing
- Secure TLS configuration (TLS 1.2+)
- Protection against path traversal attacks
- Automatic MIME type detection
- Cross-platform compatibility
## Prerequisites
- Go 1.16 or higher
- OpenSSL (for certificate generation)
## Installation
1. Clone the repository:
```bash
git clone https://github.com/enzocipher/CVE-2025-25198.git
cd https-file-server
go build -o https-server
./https-server
```