{{Header}} {{#seo: |description=This page is targeted at users who wish to improve the security of their {{project_name_gateway_short}} to become even more secure. |image=whonixgatewaysecur23234234.jpg }} [[File:whonixgatewaysecur23234234.jpg|thumb]] {{intro| This page is targeted at users who wish to improve the security of their {{project_name_gateway_short}} to become even more secure. }} = Introduction = {{security_intro}} This page is targeted at users who wish to improve the security of their {{project_name_gateway_short}} to become even more secure. = AppArmor = According to debian.org: https://wiki.debian.org/AppArmor
AppArmor is a Mandatory Access Control framework. When enabled, AppArmor confines programs according to a set of rules that specify what files a given program can access. This proactive approach helps protect the system against both known and unknown vulnerabilities.AppArmor provides a number of advantages: https://gitlab.com/apparmor/apparmor/-/wikis/home * It protects the operating system and applications from external or internal threats, including zero-day attacks. * "Good behavior" is enforced and it mitigates exploits via unknown application flaws. * AppArmor security policies define the system resources that individual applications can access, and with what privileges. For instance: ** Network access. ** Raw socket access. ** Read, write or execute file permissions on specific paths. It is recommended to use the [[AppArmor|{{project_name_long}} AppArmor profiles]] which are available for various programs that run in both {{project_name_gateway_long}} and {{project_name_workstation_long}}, such as Tor, Tor Browser, Thunderbird and more. The profiles are easy to apply and provide a considerable security benefit. = General Advice = {{mbox | image = [[File:Ambox_warning_pn.svg.png|40px]] | text = '''Warning:''' Only use {{project_name_gateway_short}} (
{{project_name_gateway_vm}}
) for running Tor!
}}
If {{project_name_gateway_short}} ({{project_name_gateway_vm}}
) is ever compromised, the attacker can discover:
* The user's identity (public IP address).
* All destinations visited.
* The entirety of clear-text and onion service communication over Tor.
Before installing any extra packages in {{project_name_gateway_short}}, first consult the developers to check whether that is necessary and wise. As a rule of thumb, no additional programs should be run in {{project_name_gateway_short}} ({{project_name_gateway_vm}}
).
= Seccomp =
According to Mozilla: https://wiki.mozilla.org/Security/Sandbox/Seccomp
Seccomp stands for secure computing mode. It is a simple sandboxing tool in the Linux kernel, available since Linux version 2.6.12. When enabling seccomp, the process enters a "secure mode" where a very small number of system calls are available (exit(), read(), write(), sigreturn()). Writing code to work in this environment is difficult; for example, dynamic memory allocation (using brk() or mmap(), either directly or to implement malloc()) is not possible.It is recommended to enable seccomp on {{project_name_gateway_short}} ([[Qubes|{{q_project_name_long}}]]:
{{project_name_gateway_vm}}
), since it is easily applied and provides additional sandboxing protection for the Tor process. Be aware that [https://gitlab.torproject.org/legacy/trac/-/wikis/doc/PluggableTransports/list pluggable transports] like obfs4, meek-lite and Snowflake are incompatible with seccomp.
See the following [https://forums.whonix.org/t/seccomp-not-working/5398 forum discussion] for further consideration of this issue.
{{mbox
| type = notice
| image = [[File:Ambox_notice.png|40px|alt=Info]]
| text = Note: Enabling seccomp on {{project_name_gateway_short}} currently prevents Tor from connecting. Help is most welcome, see: [https://forums.whonix.org/t/cannot-use-seccomp-in-{{project_name_gateway_vm}}-after-update/10267 Cannot use Seccomp in {{project_name_gateway_vm}} after update]. This might relate to a [https://lists.torproject.org/pipermail/tor-dev/2021-March/014532.html bug] in Tor code.
}}
{{Open /usr/local/etc/torrc.d/50_user.conf}}
Add.
Sandbox 1Save and exit. = Tor Connection Padding = From Tor
3.1.7
onward, connection padding is available for the Tor process. This setting helps to resist traffic analysis, as The Tor Project explains (emphasis added):
https://blog.torproject.org/tor-0317-now-released
Connections between clients and relays now send a padding cell in each direction every 1.5 to 9.5 seconds (tunable via consensus parameters). This padding will not resist specialized eavesdroppers, but it should be enough to make many ISPs’ routine network flow logging less useful in traffic analysis against Tor users. Padding is negotiated using Tor’s link protocol, so both relays and clients must upgrade for this to take effect. '''Clients may still send padding despite the relay’s version by setting ConnectionPadding 1 in torrc''', and may disable padding by setting ConnectionPadding 0 in torrc.Note that since most relays are on the latest versions, keeping it on automatic is acceptable for anonymity, but setting it to 1 will not cause significant security or usability issues and may even help if you are connected to a relay running an older version of Tor. Follow these steps to enable connection padding. {{Open /usr/local/etc/torrc.d/50_user.conf}} Add.
ConnectionPadding 1Save and exit. Forum discussion: