Built with vibe coding using Codex.
SlipNet Portable Launcher is a portable Windows 10/11 desktop launcher for SlipNet-style profiles.
It imports slipnet:// configs, stores profiles locally next to the app, starts the correct tunnel engine, and exposes the tunnel through SOCKS and an optional local HTTP proxy. The Windows implementation is intentionally different from the original Android app, but it aims to provide the same practical result for supported profile types.
- Imports plain
slipnet://profile URIs. - Creates and edits local profiles in a portable way.
- Starts supported tunnels from Windows using bundled helper executables.
- Exposes the tunnel as a local SOCKS endpoint.
- Optionally exposes a local HTTP proxy that forwards into the SOCKS tunnel.
- Optionally sets the Windows proxy while the tunnel is active.
- Stops the tunnel when the app stops it, and warns before closing the app while a tunnel is running.
Launchable with the current Windows runtime:
SlipstreamDNSTTDNSTT + SSHNoizDNSNoizDNS + SSH
Accepted by the config parser but not fully implemented as distinct Windows runtime modes:
Slipstream + SSHSSHDoHSnowflakeNaiveNaive + SSH
The app accepts slipnet://... profile URIs and decodes the base64 payload into local profile data.
Supported import behavior:
- Profile versions
v1throughv17 - Hidden resolvers in
v17 - Slipstream and DNS-style profiles
Not supported:
slipnet-enc://encrypted or locked import flows
The launcher is portable. It stores its state under a local data\ folder beside the executable:
data\profiles.jsondata\settings.json
This means the app can be moved together with its data and bundled tools.
The launcher does not reimplement the tunnel engines itself. Instead, it starts the appropriate bundled executable:
tools\slipnet-windows-amd64.exeforDNSTTandNoizDNSbased profilestools\slipstream-client.exeforSlipstreambased profiles
When the tunnel starts successfully, the launcher waits for the local SOCKS port from the selected profile to become reachable.
If enabled, the app starts a local HTTP proxy and forwards HTTP/HTTPS traffic into the SOCKS tunnel.
This makes the tunnel easier to use with browsers and Windows applications that expect an HTTP proxy instead of a SOCKS endpoint.
If enabled, the launcher temporarily updates the Windows proxy settings while the tunnel is active, then restores the previous settings when the tunnel stops.
The project is designed so the runtime dependencies can live inside the repo and inside published builds:
- profiles and settings live in
data\ - helper binaries live in
tools\ - publish output includes the
tools\directory automatically
No installer is required for normal use.
For users:
- Windows 10 or Windows 11
- x64 system
For development:
- .NET 8 SDK
- Windows desktop build environment for
net8.0-windows
dotnet run --project .\SlipNetPortableLauncher.csprojdotnet build .\SlipNetPortableLauncher.csproj -c Releasedotnet publish .\SlipNetPortableLauncher.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=falsePublished output will be placed under:
buildbin\Release\net8.0-windows\win-x64\publish\
- Start the launcher.
- Import one or more
slipnet://URIs. - Select the profile you want.
- Review the profile fields.
- Click
Start Tunnel. - Use the SOCKS endpoint from the profile, or enable the local HTTP proxy / Windows proxy options.
- Click
Stopwhen done.
If the user closes the window while a tunnel is running, the app asks for confirmation and stops the tunnel before exiting.
This project uses these upstream repositories for the bundled Windows tunnel executables:
- SlipNet
Repository:
https://github.com/anonvector/SlipNet
Used for:
tools\slipnet-windows-amd64.exe
Role in this project:
- Runs
DNSTTandNoizDNSfamily profiles on Windows
- slipstream-rust-deploy
Repository:
https://github.com/mirzaaghazadeh/slipstream-rust-deploy
Used for:
tools\slipstream-client.exe
Role in this project:
- Runs
Slipstreamfamily profiles on Windows
Additional related Windows GUI reference:
https://github.com/mirzaaghazadeh/SlipStreamGUI
See THIRD_PARTY_NOTICES.md for a compact third-party summary.
SlipNetPortableLauncher/
|-- Models/
|-- Services/
|-- tools/
|-- MainForm.cs
|-- ImportProfilesForm.cs
|-- Program.cs
|-- SlipNetPortableLauncher.csproj
|-- Directory.Build.props
|-- README.md
|-- THIRD_PARTY_NOTICES.md
- This is not a kernel-level full-device VPN implementation.
- The current Windows approach is based on tunnel helper processes plus SOCKS/HTTP proxy bridging.
slipnet-enc://encrypted profiles are not supported.Slipstream + SSHprofiles are accepted by the parser, but the launcher does not currently add a separate Windows SSH layer on top of the Slipstream client.- Parsed tunnel types outside the implemented set are not launchable yet.
- Actual connection success depends on the validity of the imported profile and the remote infrastructure.
- Build output is redirected to
buildbin\andbuildobj\byDirectory.Build.props. - Generated files and local state are ignored by
.gitignore. - The repo intentionally keeps the helper executables under
tools\so published builds work without manual EXE selection.
Useful commands:
dotnet build .\SlipNetPortableLauncher.csproj -c Release
dotnet publish .\SlipNetPortableLauncher.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=falseThis repository is a Windows launcher around upstream tunnel tools. The bundled executables are third-party components maintained in their own upstream repositories.