The protect-from-forgery tag has no wiki summary.
4
votes
1answer
711 views
Is Rails' protect_from_forgery really useful?
I'm asking this because I feel that it's making my life overly complicated when I start communicating with rails using ajax or flash.
I know it's nice to protect against CSRF, but couldn't I just ...
3
votes
1answer
289 views
CSRF token problem on requests from outside the browser to a Rails server
I need to make an HTTP POST request from outside the browser, but the Rails back-end is not accepting the authentication (error 401). I know I need to pass a CSRF token in such cases, but it's not ...
3
votes
2answers
350 views
Rails 3, protect_from_forgery and IE8 problems
I have a rails app that all works fine for me in all browsers (Safari, Firefox, IE6, 7, 8 etc)
I have a new user who has a fairly locked down version of IE8 and as soon as they try to access the app, ...
2
votes
1answer
456 views
Rails 3 protect_from_forgery not working correctly?
I am using Rails 3.0.2 which has protect_from_forgery by default in application_controller.rb.
I wanted to trigger an InvalidAuthenticityToken.
To do this I have added this javascript to my page: ...
2
votes
1answer
2k views
Rails 3 protect_from_forgery problems
I have two applications that need to talk to each other over HTTP. One is a PHP app and the other is my main app, the Rails app. I am needing the PHP app to talk to the Rails app by POSTing data to ...
2
votes
2answers
2k views
Rails request forgery protection settings
please help a newbie in Rails :) I have protect_from_forgery call (which is given by default) with no attributes in my ApplicationController class.
Basically here's the code:
class ...
1
vote
1answer
49 views
Invalid Authencity Token after deploy
Whenever I deploy a new version of an rails app, the authenticity token of the previous release becomes invalid. That's the normal behavior. I'm not looking to change that.
However, any user that ...
1
vote
1answer
768 views
How to turn off rails protect_from_forgery filter only for json
I have web site built with Rails3 and now I want to implement json API for mobile client access. However, sending json post request from the client because of the protect_from_forgery filter. Because ...
0
votes
1answer
59 views
Rails CSFR protection: is it corrent to write before_filter?
My application controller looks like this:
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :check_csrf
def check_csrf
if not verified_request?
...
0
votes
0answers
28 views
how to check if the image is original or not in silverlight?
I am developing a Silverlight application where the loaded image needs to be checked whether it is Photoshopped/manipulated using software.
Please suggest any ideas how can I check if the image is ...
0
votes
1answer
366 views
protect_from_forgery does not protect PUT/DELETE requests
I made a demo application with rails new demo and then generated a scaffolded user controller with rails generate scaffold User name:string email:string. The scaffolded code has an ...