Security

Elgg’s approach to the various security issues common to all web applications.

Tip

To report a potential vulnerability in Elgg, email security@elgg.org.

Passwords

Password validation

The only restriction that Elgg places on a password is that it must be at least 6 characters long by default, though this may be changed in /elgg-config/settings.php. Additional criteria can be added by a plugin by registering for the registeruser:validate:password plugin hook.

Password hashing

Passwords are never stored in plain text, only salted hashes produced with bcrypt. This is done via the standard password_hash() function. On older systems, the password-compat polyfill is used, but the algorithm is identical.

Elgg installations created before version 1.10 may have residual “legacy” password hashes created using salted MD5. These are migrated to bcrypt as users log in, and will be completely removed when a system is upgraded to Elgg 3.0. In the meantime we’re happy to assist site owners to manually remove these legacy hashes, though it would force those users to reset their passwords.

Password throttling

Elgg has a password throttling mechanism to make dictionary attacks from the outside very difficult. A user is only allowed 5 login attempts over a 5 minute period.

Password resetting

If a user forgets his password, a new random password can be requested. After the request, an email is sent with a unique URL. When the user visits that URL, a new random password is sent to the user through email.

Sessions

Elgg uses PHP’s session handling with custom handlers. Session data is stored in the database. The session cookie contains the session id that links the user to the browser. The user’s metadata is stored in the session including GUID, username, email address.

The session’s lifetime is controlled through the server’s PHP configuration and additionally through options in the /elgg-config/settings.php.

Session fixation

Elgg protects against session fixation by regenerating the session id when a user logs in.

Alternative authentication

Note

This section is very hand-wavy

To replace Elgg’s default user authentication system, a plugin could replace the default login action with its own. Better would be to register a PAM handler using register_pam_handler() which handles the authentication of the user based on the new requirements.

HTTPS

Note

You must enable SSL support on your server for any of these techniques to work.

You can serve your whole site over SSL by changing the site URL to include “https” instead of just “http”.

XSS

Filtering is used in Elgg to make XSS attacks more difficult. The purpose of the filtering is to remove Javascript and other dangerous input from users.

Filtering is performed through the function filter_tags(). This function takes in a string and returns a filtered string. It triggers a validate, input plugin hook.

By default Elgg comes with the htmLawed filtering code. Developers can drop in any additional or replacement filtering code as a plugin.

The filter_tags() function is called on any user input as long as the input is obtained through a call to get_input(). If for some reason a developer did not want to perform the default filtering on some user input, the get_input() function has a parameter for turning off filtering.

CSRF / XSRF

Elgg generates security tokens to prevent cross-site request forgery. These are embedded in all forms and state-modifying AJAX requests as long as the correct API is used. Read more in the Forms + Actions developer guide.

Signed URLs

It’s possible to protect URLs with a unique signature. Read more in the Forms + Actions developer guide.

SQL Injection

Elgg’s API sanitizes all input before issuing DB queries. Read more in the Database design doc.

Privacy

Elgg uses an ACL system to control which users have access to various pieces of content. Read more in the Database design doc.

Hardening

Site administrators can configure settings which will help with hardening the website. Read more in the Administrator guide Security.