TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ruby On Rails Security Guide

26 pointsby b-manalmost 15 years ago

4 comments

Groxxalmost 15 years ago
A very nice list. Readable, explanatory, and <i>full</i> of good suggestions. Almost all focused on session / injection / xss attacks, but that's probably the biggest threat you've got. I wish I'd seen it sooner; <i>most</i> I've seen before, but the regex one in particular was new to me, and it really only takes <i>one</i>, doesn't it?<p>Anyone know of anything notable they missed? I'd love to know, and it could be useful to get it added to the list too.
greenlbluealmost 15 years ago
The regular expression surprised me. I'm really used to using ^$ in php and it works as intended but apparently in Ruby the correct delimiters are \A\z.
评论 #1556640 未加载
davcroalmost 15 years ago
One of my rails apps was hijacked via xss injection last week. I wish I had read this guide sooner. I highly recommend for any rails admin.
jim_halmost 15 years ago
Thanks. I've read this before, but it's always good to reread it.