Step up the security of your Rails app | Part 1

The internet is a wonderful place, but there will always be people that don’t have good intentions when they visit our websites. That’s why you need to be aware of the vulnerabilities that your application can have and how to avoid them. In this article I’ll cover two common security problems in Rails opens a new window applications (I’ll probably make a second part since this is a very extensive topic).

It’s also worth to mention that Rails itself has improved a lot over the years opens a new window to make everything more secure and easy for the people who use it. That’s one of the reasons why it’s so important to upgrade your Rails project opens a new window .

Before we start you should know that Rails has an official security guide opens a new window with a large variety of common vulnerabilities. I recommend to take a look at it if you want to dive deeper into this topic. Also at the end of this article I’ll leave a few links to some useful tools that will help you level up security in your Rails application.

Okay, let’s jump into it:

Command Injection

What is it?

It allows the attacker to run any command on your server. Ruby opens a new window has a method opens a new window called eval which can take a string and execute what’s inside of it. This can likely be the reason of this security issue if you use it the wrong way.

Example

# User input
params[:shop][:items_ids] # Maybe you expect this to be an array inside a string.
                          # But it can contain something very dangerous like:
                          # "Kernel.exec('Whatever OS command you want')"

# Vulnerable code
evil_string = params[:shop][:items_ids]
eval(evil_string)

# BOOM!

How to avoid it?

eval is a very powerful method that should only be used in a few specific cases. Most of the time it is possible to accomplish the same goal with a safer solution. If you see a call to eval you must be very sure that you are properly sanitizing it. Using regular expressions opens a new window is a good way to accomplish that.

# Secure code
evil_string = params[:shop][:items_ids]
secure_string = /\[\d*,?\d*,?\d*\]/.match(evil_string).to_s

eval(secure_string)

SQL Injection

What is it?

It allows the attacker to manipulate a specific SQL opens a new window query that you have in your code and get unauthorized access to parts of your database. That way the attacker could do things like:

  • Read information that should have been private
  • Update records in your database that should have been out of reach
  • Drop your database

Rails uses Active Record opens a new window as its default ORM opens a new window , and it’s very efficient in terms of security. But it’s still possible to write a vulnerable query.

Example

# User input
params[:search] # You probably expect just a string with part of the user's name
                # But it can contain something like:
                # "'); DROP TABLE users; SELECT * FROM products WHERE (name LIKE '%"

# Vulnerable code
evil_string = params[:search]
User.where("first_name LIKE '%#{evil_string}%'")

# Bye users table

Rails SQL Injection opens a new window

Take a look at https://rails-sqli.org opens a new window if you want to see a larger variety of examples for this exploit.

How to avoid it?

Avoid building your own conditions as pure strings. Putting the variable directly into the conditions string will pass the variable to the database without any kind of filter, which means a huge risk for your database. Instead you should pass the variable as an extra param so it can get sanitized.

# Secure query
User.where("first_name LIKE ?", "%#{params[:search]}%")

If you need to write a raw SQL query you should know that Active Record has the quote method opens a new window that will help you to sanitize it. There are also some useful methods opens a new window to sanitize each type of query.


Useful resources

If you’re interested in improving the security of your Rails app, here are some links that you might find useful:

You can also try RailsGoat opens a new window to put in practice what you learnt.

Conclusion

As a developer you should be careful of the code you write so you can avoid these kind of vulnerabilities. One of the best things you can do is to keep learning in order to be fully aware of the bad things that could happen. And remember, never trust user input!