Access your data outside your network. Connect to any database, internal tools, or resources through secure tunnels without changing your infrastructure.
Secure, fast, and incredibly simple to use
AES-256-GCM encryption for all communication, providing TLS-like security for your data.
High-performance connection multiplexing and optimized byte forwarding for low latency.
Works with any TCP service - databases, HTTP servers, APIs, and more.
No VPN setup, no firewall rules, no complex networking. Just simple tunneling.
Built-in heartbeat mechanism ensures reliable connections with automatic recovery.
Use as CLI binaries or embed as a Go library in your applications.
Simple three-component architecture
Expose your local service (database, API, etc.) to the proxy server.
vemari -produce mydb
-target localhost:5432
Central server that manages service registry and bridges connections.
vemari-server
-port 8080
Access the remote service through a local port on your machine.
vemari -consume mydb
-local 15432
Access a remote PostgreSQL database securely:
On database server:
vemari -proxy proxy.example.com:8080 -produce postgres -target localhost:5432
On your local machine:
vemari -proxy proxy.example.com:8080 -consume postgres -local 5433
Connect to your database:
psql -h localhost -p 5433 -U user -d mydb
Vemari solves real-world problems
Securely access production or staging databases from your local development environment without exposing them publicly.
Test your applications against real staging or production services without complex VPN setups or network configurations.
Create secure tunnels between microservices in different networks or cloud providers for hybrid architectures.
Bridge connections between old and new systems across different networks without modifying legacy infrastructure.
Run integration tests against remote services without deploying test infrastructure or maintaining complex test environments.
Access internal dashboards, admin panels, or monitoring tools from anywhere without exposing them to the internet.