Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
2k views

jQuery Ajax calls and the Html.AntiForgeryToken()

I have implemented in my app the mitigation to CSRF attacks following the informations that I have read on some blog post around the internet. In particular these post have been the driver of my ...
7
votes
1answer
895 views

When the use of a AntiForgeryToken is not required /needed?

UPD: Same question asked on security.stackexchange.com and the answer I got is different. Please follow there, to get the correct answer! I'm running a rather large site with thousands of visits ...
7
votes
1answer
1k views

anti-CSRF token and Javascript

I'm trying to protect an application (php and lots of JS) from CSRF. I want to use tokens. A lot of operations are done with AJAX, so I have to pass the token in Javascript. If I want to generate 1 ...
6
votes
5answers
2k views

How can i supply an AntiForgeryToken when posting JSON data using $.ajax?

I am using the code as below of this post: First i will an fill array variable with the correct values for the controller action. Using the code below i think it should be very straigtforward by just ...
5
votes
1answer
2k views

Using MVC3's AntiForgeryToken in HTTP GET to avoid Javascript CSRF vulnerability

In regards to this Haacked blog, I'm hesitant to implement the proposed anti-JSON GET hijacking solutions since The recommended solutions to mitigating JSON hijacking involve non-REST-full JSON ...
5
votes
1answer
339 views

Will ASP.Net MVC's AntiForgeryToken Method work with Load Balancers?

Using ASP.Net MVC v2.0, I am starting to research the use of the Html.AntiForgeryToken() method when submitting forms that process data. I can see it sets a hidden value in the form HTML and it sets ...
5
votes
5answers
2k views

Intermittent error thrown, “A required anti-forgery token was not supplied or was invalid.”

I'm occasionally getting this error during normal use, and I've not found a way to stop it without removing the attribute that requires the token, which I'd rather not do. I've gotten this bug during ...
5
votes
2answers
2k views

ASP.MVC antiforgery token and cryptographic errors

I'm using ELMAH to handle errors in my MVC sites and I've noticed over the past couple of weeks that I'm getting some CryptographicExceptions thrown. The message is: ...
4
votes
2answers
188 views

AntiForgeryToken without forms authentication

We have a website that uses MVC3 and a custom authentication method that does not rely on forms authentication at all -- at least from what I can tell. In web.config we set <authentication ...
4
votes
1answer
399 views

MVC3 AntiForgeryToken breaks on Ajax login

ASP.NET MVC's AntiForgeryToken mechanism is based on the current HttpContext.User. It uses that value to construct the token when you call Html.AntiForgeryToken(). Basically it is OK (see an ...
4
votes
2answers
271 views

RequestVerificationToken does not match

I have a problem with the anti CRSF MVC mechanism. The cookie and the form input returned does not match. I'm getting an error every single time, only in one specific page. In the rest of the ...
4
votes
1answer
302 views

ASP.NET MVC 3 Anti-Forgery protection for multiportal app hosted on one local server

I have 2 websites, actually they are the same. The purpose is in that one of them is for internet users and the second one is for local use. Now they are hosted on the same IIS server on my localhost ...
4
votes
1answer
358 views

AntiForgery Exception: A required anti-forgery token was not supplied or was invalid

I have an MVC2 application. I am trying to implement AntiForgeryToken helper to prevent CSRF attacks. I am implementing this using Steve Sanderson's blog: ...
4
votes
2answers
292 views

What are the implementation details and rationale of ASP.NET MVC3's AntiForgeryToken?

The AntiForgeryToken is used to prevent CSRF attacks, however the links on MSDN don't give me much insight to what exactly the AntiForgeryToken does, or how it works, or why things are done the way ...
4
votes
2answers
738 views

MVC ValidateAntiForgeryToken multi-tabs problem

We'd been getting "A required anti-forgery token was not supplied or was invalid." errors, and on some further investigation, I've managed to recreate the problem in its simplest form - i'm either ...
4
votes
8answers
808 views

Creating an AntiForgeryToken through Dependency Injection

I'm working on improving the security of my company's website and wanted to create a token to prevent forgery attempts that could be easily maintained this is what I came up with. public class ...
3
votes
2answers
351 views

ASP.NET MVC AntiForgeryToken throwing its exception on GET?

I've got a weird error in a couple MVC apps that I've not noticed before; it's happening in my app (across the board) and also it happened when I tried running the latest Orchard drop (so I know it's ...
3
votes
1answer
364 views

MVC 2 AntiForgeryToken - Why symmetric encryption + IPrinciple?

We recently updated our solution to MVC 2, and this has updated the way that the AntiForgeryToken works. Unfortunately this does not fit with our AJAX framework any more. The problem is that MVC 2 ...
2
votes
2answers
130 views

C# Anti-forgery token fails on IE only ASP.NET MVC 3

In my MVC 3 project i have a login page that uses the anti-forgery logic built into MVC 3. On Firefox & Opera it works just fine, but on IE I get this: A required anti-forgery token was not ...
2
votes
1answer
100 views

How can I use multiple ajax forms with AntiForgery validation on the same MVC3 page?

When we have more than one possible form to post to the controller on the same cshtml page, the Antiforgery validation does not work. We went through the MVC3 code and we found the problem is in this ...
2
votes
1answer
556 views

System.Web.UI.ViewStateException : Invalid viewstate

I'm getting weird errors ever since my hosting company decided to upgrade (and restart) my web server. Here are the facts, broken down MVC 2 Application Windows 2008 Server Machine Key defined in ...
2
votes
0answers
149 views

MVC2 Anti-ForgeryToken help

I have applied an antiforgerytoken to my POST actions within my app. When the session times out I am getting an "A required anti-forgery token was not supplied or was invalid" error. I have added a ...
2
votes
2answers
839 views

ASP.NET MVC HTML.AntiForgeryToken() with multiple AJAX requests from one page

I'm creating a page that makes multiple AJAX form posts without a page refresh. I would like to use the ASP.NET MVC HTML.AntiForgeryToken() helper to secure the form against CSRF attacks. I think ...
2
votes
1answer
790 views

Uploadify problem with Authentication Token and Html.AntiforgeryToken (plugin does not send cookies)

Some time ago I had a problem with Uploadify plugin for which I did found a solution described in this answer. The problem in that question was substantially due to the fact that Uploadify uses a ...
2
votes
1answer
208 views

Dynamic Forms and AntiForgeryToken MVC

I want to create dynamic forms on a MVC page that will generate something like this. onclick=" var f = document.createElement('form'); f.style.display = 'none'; ...
2
votes
1answer
1k views

ValidateAntiForgeryToken failing with jQuery ajax form submission

I have an HTML form, to which I dynamically add a text field and perform a POST request for that form via jQuery to an ASP.NET MVC controller. If I invoke the POST request without the ...
2
votes
1answer
223 views

Creating test cases against html security exploit

In a ASP.NET MVC along with a test case project, How does someone create a test case to test against existing security exploits on a controller method? For example, how do you create a test case for ...
1
vote
1answer
41 views

anti-forgery token error

I have an mvc2 project built for .NET 3.5. I have a library that I wrote in 4.0 that I need for the 3.5 project, so I changed the target framework and now the anywhere the anti-forgery token it ...
1
vote
5answers
64 views

Secure way to stop users from forging forms

How can I prevent users from forging forms on the PHP or jquery side, I am using Jquery's ajax functionality to submit the forms, and this means that tech-wise people can change some variables such as ...
1
vote
1answer
296 views

MVC 3 AJAX and [ValidateAntiForgeryToken]

I previously asked a question regarding this, got an interesting answer which got me on my way to, well asking more questions. So here is the next question in my journey to figure out the inner ...
1
vote
1answer
156 views

Why is AntiForgeryToken's hidden field not same as its cookies on my machine?

I just did a quick test with a simple ASP.NET MVC 3 sample by modifying default LogOn form. According to this article, both hidden field __RequestVerificationToken and cookies ...
1
vote
1answer
243 views

MVC 2 Antiforgerytoken session issue

I've implemented the antiforgerytoken in my MVC 2 app. I have also added a machine key in the web.config. When the session expires and I try and do a post it throws a A required anti-forgery token ...
1
vote
1answer
244 views

If I add multiple forms in a single page, do I need to add separate Anti-Forgery Tokens in each form?

If the answer is yes then how would ASP.NET MVC find out that which token was linked to which form and how to validate it? I've seen it is creating two separate tokens for each form.
1
vote
0answers
102 views

AntiForgeryToken fails to validate in IE when an underscore is present in the subdomain?

This one really has me stumped. My AntiForgeryTokens are working fine in Firefox and IE, however, and ONLY in IE, if there is an underscore '_' in the subdomain of the URL (haven't tried underscore in ...
1
vote
2answers
1k views

Troubleshooting anti-forgery token problems

I have a form post that consistently gives me an anti-forgery token error. Here is my form: @using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.EditorFor(m => m.Email) ...
1
vote
1answer
298 views

Antiforgery token exception only when debugger is run

I have an mvc2 app which is serving content through iframes. The iframed page is simply a form. It has a request validation token. Everything works well cross domain until a developer uses the ...
1
vote
1answer
212 views

How does AntiForgeryToken works

How does AntiForgeryToken works? I'm in trying to protect from CSRF and have two scenarious: Doing POST from within another site and it fails when I enable AntiForgeryToken I have tried from my ...
1
vote
2answers
260 views

Is there a way to rename the RequestVerificationToken cookie name?

Using ASP.net MVC v2.0, Any way to change the name of the __RequestVerificationToken cookie? In an effort to conceal our underlying technology stack, I’d like to rename the cookie to something that ...
1
vote
1answer
166 views

AntiForgery implementation in Asp.net Forms

I am developing an httphandler to process some requests in Web Forms (NOT in MVC). How could I implement Anti Cross Site Scripting (like antiforgery in MVC)? I want to know mre about the antiforgery ...
1
vote
2answers
546 views

jQuery ASP.NET MVC JSON call hackable?

I have a basic JsonResult method that is being called by a jQuery $.ajax call in my view. [AcceptVerbs(HttpVerbs.Post)] public JsonResult DoWork(string param1) { // do something ...
1
vote
2answers
536 views

RequestVerificationToken cookie not present in Response

My ASP.NET MVC application prevents CSRF attacks by using the ValidateAntiForgeryToken attribute and calling Html.AntiForgeryToken to write a hidden input element with the token value, and also place ...
1
vote
1answer
464 views

Validation issue with ASP.NET MVC AntiForgeryToken

So I have an interesting problem... I'm required to get my webapp to pass through an IBM app scanning appliance before I can push my changes to production. My latest changes include the ...
0
votes
0answers
39 views

What mistake could cause error: A required anti-forgery token was not supplied or was invalid

My question is very similar to this issue: AntiForgery Exception: A required anti-forgery token was not supplied or was invalid but I have the MVC3 and I using Razor installed. controller has the ...
0
votes
0answers
65 views

Encrypted Hidden Redux - Decrypting Issue

I've been following the following tutorial and ran into a bit of an issue. http://www.heartysoft.com/encrypted-hidden-with-salt when decrypting I get a Padding is invalid and cannot be removed. ...
0
votes
1answer
33 views

How to test that my wasp.net MVC 3 web site is protected against the CSRF attack

I am using the Anti forgery token html helper at all the views that accept user input and the [ValidateAntiForgeryToken] on the associated action methods to protect from any possible CSRF attacks. ...
0
votes
0answers
19 views

Live Single server environment : A required anti-forgery token was not supplied or was invalid

On our live servers we receive the following error: Problem1: This error is received even when we have only 1 server processing all requests. Error Message: Application Error : A required ...
0
votes
1answer
48 views

Using the MVC3 AntiForgeryToken in non-authenticated scenarios?

Through several threads I can see that the use of the MVC antiforgery token is overkill on areas of a site where a user is not authenticated. I have an application that posts some information to ...
0
votes
3answers
52 views

Using the MVC3 AntiforgeryToken with links?

On my MVC3 site, I have a page that contains several links. These links all link back to a route on my site, with different ID values and are structured as such: ie: www.mysite.com/links/33351/3 ...
0
votes
1answer
159 views

A required anti-forgery token was not supplied or was invalid

Im using MVC 3 and everything is setup correctly from what I can see. A user Authenticates submits a form with the AntiForgery Token and everything works fine. That is unless the user has left the ...
0
votes
1answer
43 views

.NET Mvc3 Antiforgerytoken

In a .Net MVC3 web application, how can I get the AntiForgeryToken? The HtmlHelper.AntiForgeryToken() returns the token wrapped by a hidden field, but I just want the token. Is there an option to ...

1 2