-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving attacks and mitigations to its own section of the docs.
- Loading branch information
1 parent
2136caa
commit 2b0d7cd
Showing
2 changed files
with
210 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,214 @@ | ||
Mitgations | ||
========== | ||
This sections covers the mitigations and countermeasures in place in SecureDrop | ||
Attacks and Countermeasures on the SecureDrop Environment | ||
========================================================= | ||
|
||
SecureDrop Server Area | ||
---------------------- | ||
SecureDrop is a complex ecosystem comprised of various pieces of hardware, a | ||
diverse codebase, multiple user roles, and varied software dependencies. As | ||
such, an adversary can compromise any one of these components through a variety | ||
of attacks, as detailed below. We’ve categorized attacks and countermeasures by | ||
SecureDrop architecture area for clarity. | ||
|
||
Preventing exploitation of SecureDrop Dependency Vulnerability | ||
There are certain attacks that cannot be mitigated by any of the technical or | ||
operational countermeasures built into SecureDrop. Attacks of a political nature | ||
— for example, if a source, journalist, or organization is threatened with legal | ||
action — are context-dependent, and determined by an ever-shifting climate | ||
around press freedoms. While these attack vectors are out of the scope of this | ||
document, they should be factored in to any organization’s threat model with | ||
regional and political specificity. | ||
|
||
Attacks and Countermeasures on the Application Code via Journalist Interface, Source Interface, or SD Repository/Release | ||
------------------------------------------------------------------------------------------------------------------------ | ||
|
||
Attacks to the Application Code | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
- Configuration vulnerability in *Source Interface* or *Journalist Interface* | ||
- Lack of segmentation between *Source Interface* and *Journalist Interface* | ||
- Session management vulnerability in *Source Interface* or *Journalist Interface* | ||
- Malicious input vulnerability in *Source Interface* or *Journalist Interface* | ||
- Configuration vulnerability in *Source Interface* or *Journalist Interface* | ||
- Authentication vulnerability in *Source Interface* or *Journalist Interface* | ||
- Access control vulnerability in *Source Interface* or *Journalist Interface* | ||
- Data protection vulnerability in *Source Interface* or *Journalist Interface* | ||
- Communications vulnerability in *Source Interface* or *Journalist Interface* | ||
- Error handling and logging vulnerability in *Source Interface* or *Journalist Interface* | ||
- HTTP security configuration vulnerability in *Source Interface* or *Journalist Interface* | ||
- File and resource vulnerability in *Journalist interface* | ||
- Business logic vulnerability in *Source Interface* | ||
- Web services vulnerability in *Source Interface* | ||
- Malicious code introduced in SecureDrop repository | ||
- Malicious code introduced in SecureDrop release | ||
- Failure to encrypt submissions as they are written to disk | ||
|
||
Countermeasures on the *Journalist Interface* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
- *Journalist Interface* is located behind an authenticated hidden service and only privileged users have required authorization token | ||
- Tor hidden service protocol is end-to-end encrypted, and TLS is opt-in with EV cert, but no config option is supported | ||
- All source submissions are encrypted with GPG at rest using the airgapped submission key | ||
- Sensitive source and submission data is sent through HTTP POST | ||
- *Journalist Interface* sessions are invalidated after a user logs out or inactivity over 120 minutes. Session control includes CSRF token in Flask Framework. | ||
- All *Journalist Interface* session data (except language and locale selection) is discarded at logout, and fully deleted upon exiting the Tor Browser | ||
- *A number of mitigations are in place as protection against malicious input vulnerabilities*: X-XSS-PROTECTION is enabled and Content-Security-Policy is set to self; SQLAlchemy is used as ORM for all database queries; and application does not execute uploaded submission data | ||
- *A number of mitigations are in place as protection against access control vulnerabilities*: Apache autoindex module is disabled; cache control header is set to “no store;” Journalist/Admin passphrases are long and automatically generated; passphrases are stored in a database hashed with a unique salt; account generation/revocation/reset is restricted to Admin role; two-factor authentication is required through a TOTP token or a Yubikey | ||
- *A number of mitigations are in place as protection against the risk of an HTTP misconfiguration*: Only HTTP GET, POST and HEAD are allowed; HTTP headers do not expose version information of system components; X-Content-Type is set to "nosniff;" Content-Security-Policy is set to "self;" and X-XSS-Protection is set to "1" | ||
|
||
Countermeasures on the *Source Interface* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
- All source submissions are encrypted with GPG at rest using the airgapped submission key | ||
- Sensitive source and submission data is sent through HTTP POST | ||
- *Source Interface* runs on an end-to-end encrypted Tor onion service, and TLS is opt-in with an EV cert | ||
- *Source Interface* sessions are invalidated after a user logs out or inactivity over 120 minutes. Session control includes CSRF token in Flask Framework. | ||
- All *Source Interface* session data (except language and locale selection) is discarded at logout, and fully deleted upon exiting the Tor Browser | ||
- *A number of mitigations are in place as protection against malicious input vulnerabilities*: X-XSS-PROTECTION is enabled and Content-Security-Policy is set to self; SQLAlchemy is used as ORM for all database queries; and Application does not execute uploaded data | ||
- *A number of mitigations are in place as protection against the risk of an HTTP misconfiguration*: Only HTTP GET, POST and HEAD are allowed; HTTP headers do not expose version information of system components; X-Content-Type is set to "nosniff;" Content-Security-Policy is set to "self;" and X-XSS-Protection is set to "1" | ||
- *A number of mitigations are in place as protection against access control vulnerabilities*: Cache control header is set to “no store;” Source codenames are long and automatically generated, and stored in a database hashed with a unique salt; Source codename reset functionality is not available; Source login does not display information about prior submissions; Souce login requires 7-word codename to check Source Interface for replies | ||
|
||
Countermeasures on the SecureDrop Repository/Release | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
- Code and releases signed with airgapped signing key | ||
- Protection is placed on master and develop branch on GitHub | ||
- For SecureDrop Developers, 2-factor authentication is mandated on GitHub | ||
- Community trust is built through 3 trusted code owners and code reviews | ||
|
||
Attacks and Countermeasures on the *Application Server* and *Monitor Server* | ||
---------------------------------------------------------------------------- | ||
|
||
Attacks on the *Application Server* and *Monitor Server* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- *Application Server* or *Monitor Server* configuration error | ||
- *Journalist Interface* or *Source Interface* is framed | ||
- *Application Server* or *Monitor Server* is compromised | ||
- Attacker exploits postfix | ||
|
||
Countermeasures on the *Application Server* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- All SecureDrop infrastructure is provisioned via infrastructure-as-code (Ansible scripts) | ||
- SecureDrop *Source* and *Journalist Interfaces* uses X-Frame-Options: DENY header. | ||
- Browser Same Origin Policy should prevent the SecureDrop page from trivial modifications, but more complex attacks are mitigated via the X-Frame-Options: DENY HTTP header | ||
- *Journalist Interface* uses ATHS cookie | ||
|
||
Countermeasures on the *Monitor Server* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- All SecureDrop infrastructure is provisioned via infrastructure-as-code (Ansible scripts). | ||
- *Monitor Server* should only expose SSH via Tor hidden service. All other traffic should be blocked by firewall | ||
- FPF performs vulnerability management for software dependencies as well automatic nightly updates for dependencies and OS packages | ||
- grsecurity/PaX linux patches prevent the exploitation of certain memory-corruption attacks | ||
- AppArmor profiles further reduce process capabilities through Mandatory Access Control | ||
- OSSEC is used for intrusion detection/file integrity monitoring | ||
|
||
Attacks and Countermeasures on SecureDrop Dependencies via Python, Tor, Linux Kernel, apt, Tails, Ubuntu, or Hardware Firewall Vulnerabilities | ||
---------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
Attacks on SecureDrop Dependencies | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- Known vulnerabilities in Python or libraries used by SecureDrop | ||
- Known vulnerabilities in Tor (incl. Onion Service cryptography, authentication) | ||
- Malicious apt package installed at install-time or during updates | ||
- Known weakness in hidden service cryptography | ||
- Github is compromised | ||
- Firewall is not up-to-date | ||
- Known vulnerabilities in the Linux kernel or packages used by app/mon servers | ||
- Tails ISO malicious | ||
- Ubuntu ISO malicious | ||
- Tor apt repo compromised | ||
- Ubuntu apt Repo compromised | ||
- Tor Browser exploit | ||
- Vulnerabilities/Compromise of Hardware Firewall | ||
|
||
Countermeasures Against Vulnerabilities in Python or Libraries | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- FPF performs vulnerability management for all Python packages used by SecureDrop. | ||
- CI will run safety check to ensure dependencies do not have a CVE associated with the version (https://github.com/freedomofpress/securedrop/commit/e9c13ff3d09dfc446bc28da4347f627b5533b150) | ||
|
||
Countermeasures Against Vulnerabilities in Tor | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- A cron job ensures that automatic nightly security updates are applied for OS packages, including Tor. | ||
- Grsecurity/PaX linux patches prevent the exploitation of certain memory-corruption attacks. | ||
- AppArmor profiles further reduce process capabilities through Mandatory Access Control | ||
- Hidden Service authentication is used as a complementary authentication and only used for defense-in-depth/attack surface reduction | ||
|
||
Countermeasures Against Vulnerabilities in Linux Kernel or Packages Used By *Servers* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- A cron job ensures that automatic nightly security updates are applied for OS packages. Grsecurity/PaX linux patches prevent the exploitation of certain memory-corruption attacks. AppArmor profiles further reduce process capabilities through Mandatory Access Control. | ||
- OSSEC is used for intrusion detection/file integrity monitoring. OSSEC alerts are sent to Admins via end-to-end encrypted email. | ||
|
||
Countermeasures Against Malicious apt Installs | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- apt does GPG signature verification of all packages as long as it's not explicitly disabled | ||
|
||
Countermeasures Against Malicious Tails or Ubuntu ISOs | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- SecureDrop dmin guide (https://docs.securedrop.org/en/stable/admin.html) instructs Users/Admins to validate checksum/signatures of downloaded images | ||
- Countermeasures Against Vulnerabilities in the Hardware Firewall | ||
- SecureDrop admin guide (https://docs.securedrop.org/en/stable/admin.html) informs administrators to update the hardware firewall and provides a very restrictive policy for accessing the administrative interface (blocked on app and mon ports of the firewall). | ||
- Alert emails are sent out to admins when there are critical pfSense vulnerabilities. | ||
- *Application* and *Monitor Servers* use IPTables as host-based firewall for defense-in-depth | ||
- All application traffic is over Tor Hidden services (end-to-end encrypted) and all software packages are signed. Only DNS and NTP are transmitted over HTTP (unauthenticated and in cleartext) | ||
|
||
Attacks and Countermeasures on Network Infrastructure via FPF Infrastructure or Organization Corporate Network | ||
-------------------------------------------------------------------------------------------------------------- | ||
|
||
Attacks on Network Infrastructure | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- Landing page source control is compromised | ||
- Landing page host is compromised | ||
- Landing page DNS leaks from SecureDrop/leaks-related subdomain | ||
- Communications vulnerability in *Source Interface* or *Journalist Interface* | ||
- DNS requests to news organizations subdomain for SecureDrop landing page, Freedom.press, torproject.org Tor activity, SD submissions may be correlated | ||
- SecureDrop.org compromised | ||
- User web traffic to SecureDrop landing page uses CDN and may be logged | ||
- Tor network exploit | ||
- APT server man-in-the-middle used to serve old or malicious packages | ||
- SecureDrop APT servers are compromised or APT server man-in-the middle attack with malicious packages. | ||
- News Organization network is compromised | ||
- Landing page is unavailable | ||
- OSSEC and/or Journalist alert SMTP account credentials compromised | ||
- OSSEC and/or Journalist alert private key compromised | ||
- SMTP relay compromised | ||
- Admin's network being monitored | ||
- Landing page is framed | ||
- Landing page source control/host compromised | ||
|
||
Countermeasures in FPF Infrastructure | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- Builds are independently validated by multiple developers | ||
- Release files containing hashes (MD5, SHA1, SHA256, SHA512) of Package file and package hashes are signed with an airgapped GPG key | ||
- Developer key list is published and GPG-signed with the directory key | ||
- Valid-until is set for packages served by FPF APT repository | ||
- SecureDrop updates are packaged in a .deb file and served through FPF's apt repo | ||
- Source code is validated/verified before packaging and signing the .deb | ||
|
||
Countermeasures in News Organization Corporate Network | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- SecureDrop environment should be strictly segregated from corporate environment | ||
- Most SecureDrop traffic goes over Tor and as such is encrypted end-to-end | ||
- Alert emails to Journalists and Admins are GPG-encrypted (but not signed) to provide confidentiality and prevent tampering | ||
- OSSEC alerts are scrubbed for sensitive contents (application data, server IPs) | ||
- Documented deployment best practices provide instructions to strengthen Landing Page security and privacy | ||
|
||
Attacks and Countermeasures on User Behavior or Hardware via SecureDrop Hardware Tampering or Failure in Operational Security | ||
----------------------------------------------------------------------------------------------------------------------------- | ||
|
||
Attacks on User Behavior or Hardware | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- Journalist corporate workstation seized/tampered/compromised | ||
- Transfer device seized/stolen/lost | ||
- Admin workstation backup stick is compromised | ||
- Admin two-factor authentication device is lost or compromised | ||
- Admin SSH Key is compromised | ||
- SecureDrop installer misconfigures server/firewall hardware | ||
- Source uses tor2web or employer/corporate device | ||
- Source shares that they are using SecureDrop/leaking documents | ||
- Journalist/Admin gets phished from a submission or otherwise breaks the SVS airgap with malware | ||
|
||
Threats include: | ||
|
||
* Known or vulnerabilities in Python, libraries, packages or kernel used by the SecureDrop server. | ||
|
||
Mitgations in place: | ||
|
||
* Minimal amount of dependencies are used | ||
* Unattended daily security upgrades via cron-apt | ||
* Nightly reboots after the daily patching | ||
* Grsec-hardened kernel to protect against exploitation of memory corruption vulnerabilities | ||
* AppArmor to further restrict filesystem access to processes | ||
* OSSEC to alert suspicious activity and GPG-encrypted email | ||
|
||
|
||
Vulnerabilities in SecureDrop application or infrastrucutre code | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Threats include: | ||
|
||
* Web server configuration error | ||
* Web application vulnerability, including: | ||
* session management | ||
* malicious input | ||
* file and resource vulnerability | ||
* information disclosure | ||
* error handling and logging | ||
* encryption | ||
* business logic | ||
* Malicious code introduced in SecureDrop code repository or release. | ||
* Journalist or source interfaced are framed by a malicious third-party interface is framed | ||
* Web services vulnerability in Source interface | ||
|
||
Mitigations in place: | ||
|
||
* Source and Journalist interface are simple web applications | ||
* Ansible is use for automated and repeatable system configuration | ||
* Flask framework is used for Source and Journalist Interfaces: | ||
* Templating and auto-escaping for forms | ||
* CSRF token on all source forms | ||
* SQLAlchemy as ORM to prevent SQL injection | ||
* Journalist Interface specific authentication: | ||
* 2FA for journalist logins | ||
* ATHS token to access Journalist Interface | ||
* Files are streamed to disk encrypted and then encrypted with a 4096-bit RSA key | ||
* Airgaped signing key to sign git tag and apt server Release file | ||
* Server hardening: | ||
* SSH: | ||
* Exposed only over Tor (with ATHS) or local network only | ||
* Public-key authentication only | ||
* OSSEC for alerting on SSH brute force attempts | ||
* Webserver (Apache) | ||
* X-Frame options DENY, X-XSS-protection and Content Content Security Policy | ||
* Allow only GET, POST, HEAD HTTP methods | ||
* Support for HTTPS on souce interface (requires EV certificate) | ||
|
||
* Hardware firewall to prevent network-level attacks to the hosts | ||
* Tor Onion Service for authentication and encryption in transit for Source and Journalist Interfaces and SSH | ||
* HTTPS optional for an extra layer of in-transit encryption | ||
Countermeasures in User Behavior Recommendations | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- Source guide (https://docs.securedrop.org/en/stable/source.html) gives instructructions on best practices for the entire submission workflow | ||
- Source interface banner suggests that user disables JS (high security settings in Tor Browser) | ||
- Journalist guide (https://docs.securedrop.org/en/stable/journalist.html) informs users of malware risks, the importance of strict comparmentalization of SecureDrop-related activities | ||
- Securedrop deployment guide gives best practices for proper administration of the SecureDrop system, and its public-facing properties like the *Landing Page* (https://docs.securedrop.org/en/stable/deployment_practices.html) | ||
- Admin guide (https://docs.securedrop.org/en/stable/admin.html) gives instructions for long-term maintenance of the technical properties of the SecureDrop system, as well as operations to support Journalists | ||
- All Admin tasks are completed over Tor/Tor authenticated hidden services after installation. Any Journalist/Admin password/2FA token resets can only be done by an Admin with password-protected SSH capability or authenticated hidden service credentials. | ||
- Persistent storage on the Admin Workstation is protected with LUKs/dm-crypt encryption |
Oops, something went wrong.