docs

Various Yii 3.0 related documentation

View the Project on GitHub yiisoft/docs

Security best practices

Below, we’ll review common security principles and describe how to avoid threats when developing applications using Yii. Most of these principles aren’t unique to Yii alone but apply to website or software development in general, so you will also find links for further reading on the general ideas behind these.

Basic principles

There are two main principles when it comes to security no matter which application is being developed:

  1. Filter input.
  2. Escape output.

Filter input

Filter input means that you should never consider input safe, and you should always check if the value you’ve got is actually among allowed ones. For example, if you know that you sort by three fields title, created_at and status and the field came from user input, it’s better to check the value you’ve got right where you’re receiving it. In terms of basic PHP, that would look like the following:

$sortBy = $_GET['sort'];
if (!in_array($sortBy, ['title', 'created_at', 'status'])) {
	throw new \InvalidArgumentException('Invalid sort value.');
}

In Yii, most probably you’ll use form validation to do alike checks.

Further reading on the topic:

Escape output

Escape output means that, depending on the context where you’re using data, you should prepend it with special characters to negate its special meaning. In context of HTML you should escape <, > and alike special characters. In the context of JavaScript or SQL, it will be a different set of characters. Since it’s error-prone to escape manually, Yii provides various tools to perform escaping for different contexts.

Further reading on the topic:

Avoiding SQL injections

SQL injection happens when you form a query text by concatenating unescaped strings such as the following:

$username = $_GET['username'];
$sql = "SELECT * FROM user WHERE username = '$username'";

Instead of supplying correct username attacker could give your applications something like '; DROP TABLE user; --. The Resulting SQL will be the following:

SELECT * FROM user WHERE username = ''; DROP TABLE user; --'

This is a valid query that will search for users with empty username and then will drop user table most probably resulting in a broken website and data loss (you’ve set up regular backups, right?).

Make sure to either use PDO prepared statements directly or ensure that the library you prefer is doing it. In case of prepared statements, it’s impossible to manipulate the query as was demonstrated above.

If you use data to specify column names or table names, the best thing to do is to allow only a predefined set of values:

function actionList($orderBy = null)
{
    if (!in_array($orderBy, ['name', 'status'])) {
        throw new \InvalidArgumentException('Only name and status are allowed to order by.');
    }
    
    // ...
}

Further reading on the topic:

Avoiding XSS

XSS or cross-site scripting happens when output isn’t escaped properly when outputting HTML to the browser. For example, if user can enter his name and instead of Alexander he enters <script>alert('Hello!');</script>, every page that outputs username without escaping it will execute JavaScript alert('Hello!'); resulting in alert box popping up in a browser. Depending on website instead of innocent alert, such a script could send messages using your name or even perform bank transactions.

Avoiding XSS is quite easy in Yii. There are two cases:

  1. You want to output data as plain text.
  2. You want to output data as HTML.

If all you need is plain text, then escaping is as easy as following:

<?= \Yiisoft\Html\Html::encode($username) ?>

If it should be HTML you could get some help from HtmlPurifier. Note that HtmlPurifier processing is quite heavy, so consider adding caching.

Further reading on the topic:

Avoiding CSRF

CSRF is an abbreviation for cross-site request forgery. The idea is that many applications assume that requests coming from a user browser are made by the user themselves. This assumption could be false.

For example, the website an.example.com has a /logout URL that, when accessed using a simple GET request, logs the user out. As long as it’s requested by the user themselves everything is OK, but one day bad guys are somehow posting <img src="http://an.example.com/logout"> on a forum the user often visits. The browser doesn’t make any difference between requesting an image or requesting a page so when the user opens a page with such a manipulated <img> tag, the browser will send the GET request to that URL and the user will be logged out from an.example.com.

That’s the basic idea of how a CSRF attack works. One can say that logging out a user isn’t a serious thing. However, this was just an example. There are much more things one could do using this approach. For example, triggering payments or changing data. Imagine that some website has a URL http://an.example.com/purse/transfer?to=anotherUser&amount=2000. Accessing it using GET request, causes transfer of $2000 from an authorized user account to user anotherUser. You know that the browser will always send GET request to load an image, so you can change the code to accept only POST requests on that URL. Unfortunately, this won’t save you, because an attacker can put some JavaScript code instead of <img> tag, which allows to send POST requests to that URL as well.

For this reason, Yii applies extra mechanisms to protect against CSRF attacks.

To avoid CSRF, you should always:

  1. Follow HTTP specification. GET shouldn’t change the application state. See RFC2616 for more details.
  2. Keep Yii CSRF protection enabled.

Yii has CSRF protection as Yiisoft\Yii\Web\Middleware\Csrf middleware. Make sure it’s in your application middleware stack.

Further reading on the topic:

Avoiding file exposure

By default, server webroot is meant to be pointed to public directory where index.php is. In case of shared hosting environments it could be impossible to achieve, so you’ll end up with all the code, configs and logs in server webroot.

If so, don’t forget to deny access to everything except web. If it’s impossible, consider hosting your application elsewhere.

Avoiding debug info and tools in production

In debug mode, Yii shows quite verbose errors which are certainly helpful for development. The thing is that these verbose errors are handy for attacker as well since these could reveal database structure, configuration values and parts of your code.

Never run production applications with debugger or Gii accessible to everyone. One could use it to get information about database structure, code and to simply rewrite code with what’s generated by Gii.

You should avoid the debug toolbar at production unless necessary. It exposes all the application and config details possible. If you absolutely need it, check twice you restrict access to your IP only.

Further reading on the topic:

Using secure connection over TLS

Yii provides features that rely on cookies and/or PHP sessions. These can be vulnerable in case your connection is compromised. The risk is reduced if the app uses secure connection via TLS (often referred to as SSL).

Nowadays, anyone can get a certificate for free and automatically update it thanks to Let’s Encrypt.

Secure server configuration

The purpose of this section is to highlight risks that need to be considered when creating a server configuration for serving a Yii based website. Besides the points covered here there may be other security related configuration options to be considered, so don’t consider this section to be complete.

Avoiding Host-header attacks

If the webserver is configured to serve the same site independent of the value of the Host header, this information mayn’t be reliable and may be faked by the user sending the HTTP request. In such situations, you should fix your webserver configuration to serve the site only for specified host names.

For more information about the server configuration, please refer to the documentation of your webserver:

Configuring SSL peer validation

There is a typical misconception about how to solve SSL certificate validation issues such as:

cURL error 60: SSL certificate problem: unable to get local issuer certificate

or

stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed

Many sources wrongly suggest disabling SSL peer verification. That shouldn’t be ever done since it enables man-in-the middle type of attacks. Instead, PHP should be configured properly:

  1. Download https://curl.haxx.se/ca/cacert.pem.
  2. Add the following to your php.ini:
      openssl.cafile="/path/to/cacert.pem"
      curl.cainfo="/path/to/cacert.pem".
    

Note that you should keep the file up to date.

References