You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should consider logging the PID (os.Getpid()) and process name (os.Args[0] and os.Executable()). This would help for debugging things such as Chromium-specific "built-in trust anchor" disabling, and per-process Tor stream isolation. Maybe also the thread ID (syscall.Gettid()).
The text was updated successfully, but these errors were encountered:
This would also help us debug whether Firefox's Fission feature isolates PKCS#11 modules. If it does, that would give us per-domain Tor stream isolation. Unfortunately, Fission does not yet key the isolation by first-party domain, so this is not sufficient for anonymity. (Also Tor Browser doesn't enable Fission by default AFAIK.)
We should consider logging the PID (
os.Getpid()
) and process name (os.Args[0]
andos.Executable()
). This would help for debugging things such as Chromium-specific "built-in trust anchor" disabling, and per-process Tor stream isolation. Maybe also the thread ID (syscall.Gettid()
).The text was updated successfully, but these errors were encountered: