CodeIgniter from Scratch: Security
videos

CodeIgniter from Scratch: Security

Tutorial Details
  • Topic: CodeIgniter
  • Difficulty: Moderate
  • Tut Format: Video
This entry is part 14 of 17 in the CodeIgniter From Scratch Session
« PreviousNext »

In this fourteenth episode of the series, our subject is ‘Security.’ We will go over topics such as: password encryption, message encoding/decoding, XSS filtering, output filtering, sql injection, session security, private controller methods and more.


Catch Up


Day 14: Security

Premium Members: Download this Video ( Must be logged in)

Thanks for watching! Any questions/thoughts?

Add Comment

Discussion 90 Comments

Comment Page 2 of 2 1 2
  1. Will says:

    Great tutorial! I really learned a lot. I was wondering if you could do a tutorial on creating an admin area to manage the content of a CodeIgniter application/website. I am having a hard time figuring how to create an admin area without making it a completely separate CodeIgniter project.

  2. Niklas says:

    Hi,

    Just wanna say that I really like the CodeIgniter tutorials. Please continue with this series please! I´ve been sitting lika a freak in front of the computer the last couple of days and I am on part 13/14 now.

    • Niklas says:

      Jeffrey,

      By the way, you asked us to remind you about “Scaffolding” in a previous lesson! :)

      /Niklas

      • Niklas says:

        Sorry for spamming, but I am a premium member of tutsplus and I still can´t download this video. I can´t play it on iTunes either, it´s only a white screen.

  3. Myung Ki says:

    Hey Guys ….
    Question… ???
    Why is it that you guys dont do anymore tuts on codeigniter anymore ????
    Is there a particular reason for that….

    I really loved those tuts – and i’m sure that others does too…
    What will it take for you guys, to do more on codeigniter ???

    Sincerely Myung Ki

  4. Tomás says:

    Really nice tutorial, I’ve learned a lot with all the tuts that you’ve made. Thanks a lot!

    But I have a question, what is the font that you use in netbeans?

  5. Subrat says:

    When the videos will be uploaded? I do not see any link for video download.

  6. NANY says:

    great tutorial, i’m realy love it.. waiting the next episode…. ci maniac

  7. Great series, made me fall in love with codeigniter!! You guys did an awesome job

    Looking forward to seeing more tuts on codeigniter, maybe a full application build for beginners that want to use code igniter, but doesn’t know how to build a 5 page website with codeigniter

    Keep up the good tuts :-)

  8. rospiz says:

    pls fix the video, it’s broken

  9. TuxLyn says:

    Day 14 zip file with all the files in this video would be helpful :)

  10. andy91 says:

    How about a tutorial on how to protect against packet sniffers/ man in the middle attack. How to use codeigniter with SSL for super secure logins etc…

  11. Nuno Loureiro says:

    I can’t believe you are recommending developers to use md5() or sha1() to store passwords. Having both without a salt is the same as doing nothing, as long as the password is not really long. That is a really bad security practice. Please either recommend developers to use HMAC-SHA256 or +, or PBKDF2.

    As for DB access please recommend users to use prepared statements, not mysql_real_escape_string() crap. It’s because of advices like this that I see vulns like: $query = ‘SELECT * from user where userid=”.mysql_real_escape_string($_POST['uid']).’”‘;

Comment Page 2 of 2 1 2

Add a Comment

To add a code snippet to your comment, please wrap your code like so: <pre name="code" class="html">YOUR CODE</pre>. You can replace the class name with "js," "css," "sql," or "php." If there are any "<" or ">" within your code, please search and replace them with: &lt; and &gt; respectively.