Skip to content

Security: cph/discourse

Security

docs/SECURITY.md

Discourse Security

We take security very seriously at Discourse. We welcome any peer review of our 100% open source code to ensure nobody's Discourse forum is ever compromised or hacked.

Where should I report security issues?

In order to give the community time to respond and upgrade we strongly urge you report all security issues privately. Please email us at team@discourse.org with details and we will respond ASAP. Security issues always take precedence over bug fixes and feature work. We can and do mark releases as "urgent" if they contain serious security fixes.

Password Storage

Discourse uses the PBKDF2 algorithm to encrypt salted passwords. This algorithm is blessed by NIST. Security experts on the web tend to agree that PBKDF2 is a secure choice.

options you can customise in your production.rb file

  • pbkdf2_algorithm: the hashing algorithm used (default "sha256")
  • pbkdf2_iterations: the number of iterations to run (default 64000)

XSS

The main vector for XSS attacks is via the post composer, as we allow users to enter Markdown, HTML (a safe subset thereof), and BBCode to format posts.

There are 2 main scenarios we protect against:

  1. Markdown preview invokes an XSS. This is possibly severe in one specific case: when a forum staff member edits a user's post, seeing the raw markup, where a malicious user may have inserted code to run JavaScript. This code would only show up in the preview, but it would run in the context of a forum staff member, which is very bad.

  2. Markdown displayed on the page invokes an XSS. To protect against client side preview XSS, Discourse uses Google Caja in the preview window.

On the server side we run a whitelist based sanitizer, implemented using the Sanitize gem. See the relevant Discourse code.

In addition, titles and all other places where non-admins can enter code are protected either using the Handlebars library or standard Rails XSS protection.

CSRF

CSRF allows malicious sites to perform HTTP requests in the context of a forum user without their knowledge -- mostly by getting users who already hold a valid forum login cookie to click a specific link in their web browser.

Discourse extends the built-in Rails CSRF protection in the following ways:

  1. By default any non GET requests ALWAYS require a valid CSRF token. If a CSRF token is missing Discourse will raise an exception.

  2. API calls using the secret API bypass CSRF checks.

  3. Certain pages are "cachable", we do not render the CSRF token (<meta name='csrf-token' ...) on any cachable pages. Instead when users are about to perform the first non GET request they retrieve the token just in time via GET session/csrf

Deployment concerns

We strongly recommend that the various Discourse processes (web server, sidekiq) run under a non-elevated account. See our install guide for details.

There aren’t any published security advisories