Tagged Questions
AuthenticityToken is a feature of Ruby on Rails used to protect against CSRF
101
votes
4answers
27k views
Understand Rails Authenticity Token!
I am running into some issues regarding Authenticity Token in rails, as I did many times now.
But I really don't want to just solve this problem and go on, I would really like to understand ...
5
votes
2answers
213 views
Is disabling CSRF protection sometimes justified?
I'm thinking of login forms in particular:
By their nature, login forms block action on arbitrary input — without a valid username and password, you just get bounced. Is there a reason why these even ...
5
votes
2answers
1k views
Ruby on Rails form page caching including authenticity_token
I have a simple Ruby on Rails form which includes an authenticity_token. Unfortunatly, I missed that when you page cache this page then the Authenticity Token becomes invalid. I'm glad I figured it ...
2
votes
1answer
305 views
Rails 3.1 authenticity_token + uploadify
I am trying to use Uploadify with my Rails 3.1 app, i've went through all the steps (middleware, initializers, config ...etc) and i think they are all working good but for one thing, my authenticity ...
2
votes
2answers
129 views
Proper way to send an Authenticity Token with AJAX..?
This works but gets stopped because it lacks an authenticity token:
$(".ajax-referral").click(function(){
$.ajax({type: "POST", url: $(this).parent("form").attr("action"), dataType: "script"});
...
2
votes
1answer
1k views
Received WARNING: Can't verify CSRF token authenticity after upgraded from Rails 3.0.2 to 3.1
Searched around for a while, the common solution to it is to insert <%= csrf_meta_tags %> to layout header. However, it makes no difference. Installing jquery-rails doesn't help either
Rails 3.1.0
...
2
votes
2answers
455 views
How to share sessions between subdomains with Rails 2.3.8
I have found numerous posts that describe how to do this. They all look something like putting this in the appropriate environment config file:
config.action_controller.session[:domain] = ...
2
votes
1answer
734 views
Ruby on Rails 3 InvalidAuthenticityToken With REST Calls
I'm just putting together a simple web application in Ruby on Rails 3 RC and I'm a bit stumped with the forgery protection. I plan to have a web interface as well as allow XML API calls from an iPhone ...
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 ...
2
votes
2answers
1k views
Rails - Catch 'Invalid Authenticity Token' exception
I'm currently using RESTful Authentication plug-in on my rails application.
There is a typical scenario when a user stays at login screen for enough time (let's say 1 day..) that makes the ...
2
votes
1answer
574 views
Testing Authenticity Token in Rails
I'm trying to test a method I have in my application, but I don't know how to unit test a method that is being protected from forgery, take a look at this:
def index
@alumnos = ...
1
vote
1answer
23 views
How do I handle iPhone requests to a Ruby on Rails backend?
We are creating mobile support for our ruby on rails website, and ran into the problems of handling authenticity tokens.
As previous articles have mentioned, authenticity tokens are created on the ...
1
vote
0answers
267 views
login to web page using authenticity token with curl
i'm trying to create a custom program (or a script) to login to a web page and then download a file. The login page has a form with 2 text fields (username and password) and a hidden field ...
1
vote
1answer
303 views
Rails InvalidAuthenticityToken at random times
Here is the deal.
Our application is working and is being used by writers to send in content for the web site.
Problem is, from times to times, our writers get an error after submiting the form for ...
1
vote
1answer
482 views
How do i add the authenticity token?
I recently switched to Google closure for a new project. I am having trouble adding the authenticity token to the headers in a ajax call. How do i go about it?
My Ajax snippet (using goog.net.XhrIo ...
1
vote
1answer
377 views
Remove div from authenticity_token in Rails?
How can I remove the div from authenticity_token in Ruby on Rails?
Thanks.
1
vote
3answers
732 views
rails auto_complete plugin. how do i pass authenticity token?
I tried the auto_complete text field in rails 2.3.3 and the server says it denied request because of no authenticity token. I can see that the helper doesn't automatically create a parameter for it.
...
0
votes
1answer
49 views
Work with authenticity token? Or disable it?
My mini-web-appliance will submit data samples to a RoR app, which will add them to a MySQL table.
I figured out how to form the POST data packet, but what I don't get is how to avoid the ...
0
votes
1answer
51 views
Internet Explorer causes an Invalid Authenticity Token error
This works in all browsers except IE7 and IE8 ( and probably IE6 ).
For some reason it won't respect my Authenticity Token.
Any ideas, tips for debugging, workarounds?
My standard setup:
...
0
votes
0answers
191 views
Login in a webpage using authenticity_token with java program
In order to login to a webpage with form that uses an authenticity_token as hidden field i'm using the above java code.
Although doesn't seems that works correctly as i can't authenticate.
Could ...
0
votes
1answer
526 views
How to handle the AuthenticityToken value using a HTTP POST request from a RoR application to another RoR application?
I am using Ruby on Rails 3 and I would like to know how to handle the AuthenticityToken value using a HTTP POST request from a RoR application to another RoR application. In this case I aim to submit ...
0
votes
1answer
350 views
iPhone image (binary) file post to a Rails app
I am a backend Rails developer of an API. The API must accept an image upload from an iPhone client.
My question is what the Content-Type for the entire POST must be to allow the upload and not ...
0
votes
2answers
692 views
How can you use Rails AuthenticityToken infrastructure to explicitly protect a GET action
Rails AuthenticityToken automatically protects POST/PUT/DELETE requests from CSRF attacks. But I have another use case in mind.
I am showing a video on my site that I don't want to be embeddable on ...
0
votes
1answer
851 views
Stress/load testing Ruby on Rails apps with Authenticity Tokens
My Ruby on Rails application is mostly contained behind a login page. I'd still like to be able to stress test these pages, as they have some heavy database access.
Sending the username and password ...
0
votes
1answer
473 views
Rails refuses to load a session from the data sent by swfupload
I'm using swfupload's most recent version, 2.2.0 and rails 2.3.3. Having seen a number of statements to the effect that I would have to replace CGI::Session.initialize with a chunk of code to extract ...
0
votes
1answer
1k views
ActionController::InvalidAuthenticityToken: verified with authentication token on the form!
I don't know why it happens but my form for some reason does not post properly. I am very sure the form contains the required authentication token:
<form ...