# OSTP Client - Windows x64 Distribution Windows native client with GUI, daemon service, and automated installer. ## ๐Ÿ“ฆ Contents - **ostp-installer.exe** (0.37 MB) - Setup wizard with admin privileges - **ostp-daemon.exe** (0.53 MB) - Windows Service for VPN tunnel management - **ostp-client.exe** (1.64 MB) - Command-line client for advanced users - **SHA256SUMS.txt** - Integrity verification checksums ## ๐Ÿš€ Quick Start (Recommended) ### 1. Verify Integrity Open PowerShell: ```powershell Get-Content SHA256SUMS.txt | ForEach-Object { $hash, $file = $_ -split '\s+', 2 $computed = (Get-FileHash $file -Algorithm SHA256).Hash.ToLower() if ($hash -eq $computed) { "โœ“ $file" } else { "โœ— $file MISMATCH!" } } ``` ### 2. Run Installer **Right-click `ostp-installer.exe` โ†’ Run as Administrator** The installer will: - Install Wintun driver (TAP network adapter) - Register `OspabGuard` Windows Service - Configure firewall rules - Install GUI to Start Menu - Create desktop shortcut ### 3. Launch GUI After installation, open **OSTP VPN** from Start Menu or desktop. ## ๐Ÿ–ฅ๏ธ GUI Interface Dark stealth theme interface (450ร—600): - **Server Selection** - Choose country from dropdown (auto-fetch from Master Node) - **Connect/Disconnect** - One-click VPN toggle - **Real-time Stats** - Upload/download speeds, ping, connection time - **System Tray** - Minimize to tray for background operation ### Settings - Auto-connect on startup - Kill switch (block all traffic when VPN disconnects) - Protocol selection (TCP/UDP) - Custom DNS servers ## ๐Ÿ”ง Command-Line Client (Advanced) ### ostp-client.exe For advanced users who prefer CLI or scripting: ```cmd # Interactive wizard ostp-client.exe setup # Connect to specific server ostp-client.exe connect --server 1.2.3.4:443 --psk YOUR_PSK --country RU # List profiles ostp-client.exe profiles # Connect using saved profile ostp-client.exe connect --profile "US-West" # Disconnect ostp-client.exe disconnect # Show status ostp-client.exe status ``` ### Configuration File Located at: `%APPDATA%\Ospab\OSTP\config.json` ```json { "profiles": [ { "name": "US-West", "server": "1.2.3.4:443", "psk": "64_char_hex_psk", "country_code": "US" } ], "auto_connect": false, "kill_switch": true } ``` ## ๐Ÿ› ๏ธ Service Management ### ostp-daemon.exe Runs as Windows Service (`OspabGuard`): ```cmd # Check service status sc query OspabGuard # Start service sc start OspabGuard # Stop service sc stop OspabGuard # View service logs type C:\ProgramData\Ospab\OSTP\ostp-daemon.log ``` ### IPC Communication GUI communicates with daemon via Named Pipe: `\\.\pipe\ostp-daemon` Commands: - `CONNECT\n` - Establish VPN tunnel - `DISCONNECT\n` - Close VPN tunnel - `STATUS\n` - Get JSON status response ## ๐Ÿ” Security Features ### Anti-Reverse Engineering - **ostp-guard** analysis tool detection (IDA Pro, x64dbg, Ghidra, etc.) - VM environment detection (VirtualBox, VMware, QEMU) - Debugger detection (IsDebuggerPresent, remote debuggers) - Weighted scoring system (4+ points = environment rejected) - Error code masking (`0xE0000001` for all security blocks) ### Stealth Mode - TLS 1.3 ClientHello mimicry (randomized JA3 fingerprint) - Geo-specific SNI selection (cloudflare.com, google.com, etc.) - UDP-over-TCP framing with random padding - No identifiable protocol signatures ### Encryption - **AEAD:** ChaCha20-Poly1305 - **Key Exchange:** X25519 Elliptic Curve Diffie-Hellman - **PSK Validation:** HMAC-SHA256 with silent drop on failure ## ๐Ÿ“Š Network Configuration After connection: - **Client IP:** Assigned by Master Node (10.X.Y.Z) - **Gateway:** Master Node (10.X.0.1) - **DNS:** 1.1.1.1, 8.8.8.8 (configurable) - **MTU:** 1420 (optimized for tunneling overhead) ## ๐ŸชŸ System Requirements - **OS:** Windows 10/11 (x64) or Windows Server 2019+ - **RAM:** 256 MB minimum - **CPU:** 1 core minimum - **Network:** Internet connection (any speed) - **Privileges:** Administrator required for installation ## ๐Ÿ”ง Troubleshooting ### Connection Issues 1. **Check service status:** ```cmd sc query OspabGuard ``` 2. **View logs:** ```cmd type C:\ProgramData\Ospab\OSTP\ostp-daemon.log ``` 3. **Test connectivity:** ```cmd ping 1.1.1.1 tracert 1.1.1.1 ``` ### Firewall Conflicts If Windows Firewall blocks connection: ```cmd netsh advfirewall firewall add rule name="OSTP VPN" dir=out action=allow program="C:\Program Files\Ospab\OSTP\ostp-daemon.exe" ``` ### Wintun Driver Issues Reinstall Wintun: 1. Uninstall via Device Manager (Network adapters โ†’ Wintun) 2. Run `ostp-installer.exe` again 3. Reboot system ### Service Won't Start Check Event Viewer: ``` Event Viewer โ†’ Windows Logs โ†’ Application โ†’ Filter by "OspabGuard" ``` ## ๐Ÿ”„ Updates ### Automatic Updates (via GUI) 1. GUI checks for updates on startup 2. Prompts user to download latest version 3. Downloads installer from official server 4. Verifies SHA256 checksum 5. Runs installer (requires admin) ### Manual Update 1. Download latest release 2. Close GUI and stop service: `sc stop OspabGuard` 3. Run new installer 4. Restart service: `sc start OspabGuard` ## ๐Ÿ—‘๏ธ Uninstallation ### Via Installer Run `ostp-installer.exe` and select "Uninstall" option. ### Manual Removal ```cmd # Stop and remove service sc stop OspabGuard sc delete OspabGuard # Remove files rmdir /s /q "C:\Program Files\Ospab" rmdir /s /q "C:\ProgramData\Ospab" rmdir /s /q "%APPDATA%\Ospab" # Uninstall Wintun driver pnputil /enum-devices /class net | findstr "Wintun" pnputil /remove-device ``` ## ๐Ÿงช Debug Mode Enable debug logging: ```cmd # Set registry key reg add "HKLM\SOFTWARE\Ospab\OSTP" /v DebugMode /t REG_DWORD /d 1 /f # Restart service sc stop OspabGuard sc start OspabGuard # View debug logs type C:\ProgramData\Ospab\OSTP\debug.log ``` ## ๐Ÿ“š Documentation - Project Repository: https://github.com/ospab/ospab.network - Issue Tracker: https://github.com/ospab/ospab.network/issues - Architecture: See `prompt.md` in repository ## โš ๏ธ Known Issues - **Windows Defender SmartScreen:** May show warning on first run (normal for unsigned binaries) - **Antivirus False Positives:** ostp-guard detection may trigger AV heuristics (whitelist required) - **VirtualBox:** VM detection may prevent execution (expected behavior) ## ๐Ÿ†˜ Support For issues and questions: - GitHub Issues: https://github.com/ospab/ospab.network/issues - Email Support: support@ospab.network - Telegram: @ospab_support ## ๐Ÿ“‹ Version History - **0.1.0** (January 2, 2026) - Initial release - Windows Service implementation - GUI with dark stealth theme - OTP enrollment token support - Dynamic IPAM (10.X.0.0/16) --- **Version:** 0.1.0 **Build Date:** January 2, 2026 **License:** Proprietary **Copyright:** ยฉ 2026 Ospab Network