v2: tabs, chain builder, obfuscation modes, hop slider, Defender exclusion, firewall kept

Made-with: Cursor
This commit is contained in:
Dr Jones
2026-04-14 17:13:02 -07:00
commit 4bb626498f
45 changed files with 34053 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from __future__ import annotations
import os
from pathlib import Path
def app_data_dir() -> Path:
base = os.environ.get("LOCALAPPDATA") or str(Path.home() / "AppData" / "Local")
d = Path(base) / "ProxyChainManager"
d.mkdir(parents=True, exist_ok=True)
return d
def gost_exe_path() -> Path:
return app_data_dir() / "gost.exe"