homeASCIIcasts

Episodes tagged with “security”

  1. 9

    Filtering Sensitive Logs

    By default, Rails stores sensitive data in its log files. Find out how to filter it out.

    Tags: security

  2. 20

    Restricting Access

    Learn how to lock your site down and keep the public from accessing the administration features,

    Tags: administration security

  3. 25

    SQL Injection Other translations: Id

    Attacks via SQL injection are one of the most common ways to attack web applications. Learn how to avoid being a victim of it.

    Tags: security active-record forms

  4. 26

    Hackers Love Mass Assignment

    If you're using mass assigment you're giving complete control to your models to your users. Learn how to protect them in this episode.

    Tags: security active-record forms

  5. 27

    Cross-site Scripting

    Cross-site scripting is a common security issue. FInd out why it is important to escape any user input that you display in a browser.

    Tags: security views

  6. 143

    PayPal Security

    Find out how to encrypt the data to send to PayPal and verify the authenticity of Instant Payment Notifications.

    Tags: tools security e-commerce

  7. 178

    Seven Security Tips Other translations: Cn

    Security is paramount in your Rails applications. Here we show seven commons security flaws from mass assignment to CSRF.

    Tags: security forms views active-record

  8. 204

    XSS Protection in Rails 3

    In previous versions of Rails it was easy for your application to be vulnerable to cross-site scripting attacks. Rails 3 solves this problem but automatically escaping output.

    Tags: rails-3.0 views security