Cryptographic Nonce for anti-CSRF protection

learn more… | top users | synonyms

3
votes
0answers
60 views

AntiForgery.GetTokens: what is the purpose of the oldCookieToken parameter?

We're writing an iOS mobile app in objective-c that makes posts to our ASP.NET MVC server app. On iPhone, the HTTP stack (and cookies etc) appear to be shared with Safari. This leaves us open to XSRF ...
0
votes
1answer
115 views

AJAX XSS attacks and .Net MVC

This post describes a tokening system for all JSON HttpGet and HttpPost AJAX calls: In short, you use the AntiForgeryToken attribute to create a token on the page, and then manually validate that ...
1
vote
1answer
156 views

How to login to ASP.Net MVC website (Forms authentication) using HttpClient in Windows Store App?

First I created the HttpClientHandler with cookie container CookieContainer cookies = new CookieContainer(); HttpClientHandler handler = new HttpClientHandler(); handler.CookieContainer = cookies; ...
2
votes
3answers
151 views

How does ValidateAntiForgeryToken fit with Web APIs that can be accessed via web or native app?

I'm trying to understand how I will be able to craft an API using ASP.NET Web API which will be protected from CSRF, while still being accessible from non-web environments (e.g. native mobile ...
1
vote
1answer
133 views

Ajax Jquery post using relative URL

I have a create view and an edit view, almost identical. They both include a cascading dropdown list. The value of the second list is part of the data that's being created or edited. The first ...
0
votes
0answers
39 views

Any re-POST “hole” in PRG and anti-forgery tokens?

If I've properly implemented post-redirect-get and anti-forgery tokens, is there still a "simple" scenario where somebody could accidentally re-post the same form data? I'm not talking about a ...
0
votes
1answer
171 views

AntiForgeryToken validation Asp.Net MVC 3

How AntiForgeryToken gets invalidated? I have set up this token to prevent CSRF attacks on my login page and have inspected it with fiddler. When i call GET method the token generates as hidden field ...
3
votes
1answer
245 views

Convert ASP.NET MVC4 SPA AntiForgeryToken to PhoneGap

I do have SPA application that use some functionality of ASP.NET MVC4 like AntiForgeryToken. I don't know how to implement AntiForgeryToken functionality in HTML without use of CSHTML which is not ...
0
votes
1answer
180 views

MVC does not return Readonly Properties via Submit Form

It has been some time i try figuring out this! Generally: i want to get a "Readonly, Hidden" Property from my Form. I Trimmed all that is unncessey from the example: i have the following Model ...
0
votes
0answers
169 views

How to work with JQuery and Anti-forgery token with Asp.Net MVC 4?

I need to know, that how to work with JQwidges (Jquery Control & Anti-forgery token). I want to know the basic setup with MVC4. That Where should I put what Tag ? Please Help for it. I know that ...
1
vote
1answer
176 views

Is a good practice to avoid CSRF doing this? (ASP.NET MVC 3)

I have one question about the use of AntiForgeryToken provided by MVC 3. I will try to explain my idea. The basic idea is an Ajax button to "mark as favorite" one (or more) item from a Catalog. So I ...
1
vote
0answers
127 views

MVC3 asp.net Html.AntiForgeryToken() issue while user having multiple tabs with same form

I am attempting to add the Html.AntiForgeryToken() to the login form of a MVC3 site. This form is on every page of the site. I have noticed that if the user opens multiple tabs on the site, and then ...
0
votes
1answer
316 views

Handle AntiForgery Token in Winform and WebAPI

What's the best way to deal with Antiforgery on methods with ValidateAntiForgeryTokenAttribute attribute while calling from a non-browser client, say WinForm? Based on what I know, below is how anti ...
0
votes
0answers
123 views

ASP.NET MVC 2.0 jQuery Ajax Delete and Auth Token

I am trying to issue a DELETE via jQuery AJAX and when I put on the ValidateAntiForgeryToken attribute for my Action I get the following error (as seen in Fiddler): A required anti-forgery token ...
0
votes
1answer
777 views

Antiforgery Token

I have finished a website with MVC.NET 4.0, and everything works perfectly on my localhost. However, when I uploaded the site on my server, and try to login with my username and password, I am ...
0
votes
0answers
74 views

antiforgery not working for the first request

We have our application deployed on Windows Azure.Functionality is such that user is added by admin and mail goes with the url to user for setting the password. Antiforgery Token fails for the first ...
1
vote
1answer
288 views

how can test AntiForgeryToken with JSON post in mvc 4

I have Json post to controller with MVC 4 visual studio 2012... I have successfully pass json data along with AntiForgeryToken to controller but i dont know how exactly to test if it is really working ...
0
votes
1answer
142 views

Implementing Anti forgery for Telerik upload control

I have come across implementing Anti forgery token for a POST method when its an ajax call,the couple of things I do here are [1]Include[ValidateAntiForgeryToken] attribute for my POST controller ...
1
vote
2answers
361 views

HOWTO do CSRF protection in Struts2 application for AJAX requests

I have a struts2 webapp in which I need to implement CSRF protection. For statis forms it is pretty straight forward. I just need to activate the tokenSession interceptor & then set ...
2
votes
2answers
307 views

Jmeter for pages having dynamic token

I am recording a set of pages using JMeter. Some of the pages have dynamically generated token stored in hidden field. I retrieve this token using xpath extractor, query is ...
2
votes
1answer
231 views

Cannot find embedded resource assembly named Yahoo.Yui.Compressor.Resources.Microsoft.IdentityModel.dll

I am using throughout my NopCommerce website a component called BundleTransformer which extends the 'bundling' feature of MVC4. It uses another component called Yahoo.Yui.Compressing to transform and ...
9
votes
1answer
1k views

A way of properly handling HttpAntiForgeryException in MVC 4 application

Here is the scenario: I have a login page, when user sign it it is redirected to home application page. Then user is using browser back button, and now he is on login page. He tries to login again ...
0
votes
1answer
221 views

Antiforgery token in logon form

I read a couple of articles about using antiforgery token in forms to prevent CSRF attacks. I understand that an attacker can create http request get or post to these forms using the credentials of ...
0
votes
1answer
255 views

AntiForgeryConfig.CookieName inconsistent with HttpContext.Request.Cookies - why?

We have an app written in ASP.NET MVC 3, that uses @Html.AntiForgeryToken(). We want to validate the token in our custom attribute (without a need of specifying the default attribute ...
1
vote
1answer
586 views

ASP.NET MVC - ValidateAntiForgeryToken expiring

In a web page we provide a hyperlink (GET) that the User may click on to authenticate: @Html.ActionLink("Please Login", "MyMethod", "MyController") This maps to the following controller method ...
2
votes
1answer
380 views

Is it possible/right to use multiple @Html.AntiForgeryToken() in 2 different forms in one page?

I have been facing serious problem with @Html.AntiForgeryToken() . I have a register controller which had a create view to create/register new members. For that reason I used a ...
1
vote
0answers
184 views

Jquery Post & ASP.NET MVC Anti-ForgeryToken Validation

In my controller, [HttpPost] [OutputCache(CacheProfile = "Short", VaryByParam = "id", VaryByCustom = "none")] [ValidateAntiForgeryToken(Salt = @ApplicationEnvironment.SALT)] ...
6
votes
1answer
663 views

How would I write an ActionFilter that ensures AntiForgeryTokens are used for every Post operation?

I want to use AntiForgeryTokens on every HttpPost Action using an ActionFilter that is in a controller named ControllerBase that every other controller inherits from. I want to do this by creating an ...
7
votes
2answers
5k views

Problems implementing ValidatingAntiForgeryToken attribute for Web API with MVC 4 RC

I'm making JSON-based AJAX requests and, with MVC controllers have been very grateful to Phil Haack for his Preventing CSRF with AJAX and, Johan Driessen's Updated Anti-XSRF for MVC 4 RC. But, as I ...
2
votes
1answer
2k views

How does AntiForgeryToken works?

i am applying Security to my .net 3.5 mvc2 web application my website doesn't contain any user authentication and consists of many ajax calls in .js files in my .aspx file i wrote <%= ...
0
votes
0answers
195 views

MVC AntiForgeryToken Issues - IE9 and Chrome

We have a real Heisenbug on our hands: we've implemented the MVC 3 AntiForgeryToken technology on our websites and are running into intermittent but extremely frustrating bad request errors. They ...
0
votes
1answer
214 views

MVC3 AntiForgeryToken related issue, deep in the framework

I am running MVC3 web application on .Net 4 and IIS6 (Win2003 server). Intermittently we can capture following error messages: System.ArgumentException: Value cannot be null or an empty string. ...
10
votes
1answer
2k views

Web API and ValidateAntiForgeryToken

We have some existing MVC web services that are called AJAX style from web pages. These services make use of the ValidateAntiForgeryToken attribute to help prevent request forgeries. We are looking ...
0
votes
2answers
59 views

how to permit a cross site request with AntiForgeryToken turned on

We all know about how to use AntiForgeryToken to avoid a crossed-site request forgery and it's affective enough. I have a different case (but I think it's common), I have two asp.net mvc web servers, ...
2
votes
2answers
562 views

Asp.Net Anti-Forgery

I've one question, I recently put anti forgery token in all my forms and in my controller I put the ValidateAntiForgeryToken attribute. But often my users fill a form, then came back with the browser ...
0
votes
1answer
651 views

Android: HttpPost content type header and body different between wifi and 3g

Been trying to figure out what's wrong with this one for a while. I'm making a post request with HttpClient.execute with a json body to my server api. Works fine under normal wifi and most 3g, but ...
0
votes
1answer
838 views

Anti Forge Token and Ajax JSON Post Does not Work

I am running MVC3, .Net 4 and VS2010. I have following sample project to illustrate the problem. My controller code namespace AntiForgeAjaxTest.Controllers { public class IndexController : ...
1
vote
1answer
1k views

Ajax post throws A required anti-forgery token was not supplied or was invalid

I'm trying to secure my ajax posts using the anti-forgery mechanism. First I've added the antiforgerytoken helper method call to my view @Html.AntiForgeryToken() and then adjusted my jquery post ...
17
votes
1answer
6k views

AntiForgeryToken deprecated in ASP.Net MVC 4 RC

I just installed ASP.Net MVC 4 RC to replace ASP.Net MVC 4 beta. When trying to run an existing application I'm getting an error message that AntiForgeryToken has been deprecated. Here's my code: ...
1
vote
0answers
128 views

Using a MVC2 AntiforgeryToken from WebForm

Background I need to use an AntiForgeryToken from a WebForms page (hosted in a cms). The page should post data to an MVC 2.0 action that is part of the solution. The action should use the ...
0
votes
1answer
445 views

AntiForgeryToken With Jquery Ajax Calls Using ViewModels?

I have read through here about getting the AntiForgeryToken working with Jquery ajax reuests and I basically have to make sure I include the token with my post/ajax call using something like data: { ...
6
votes
1answer
1k views

How to include the @Html.AntiForgeryToken() when deleting an object using a Delete link

i have the following ajax.actionlink which calls a Delete action method for deleting an object:- @if (!item.IsAlreadyAssigned(item.LabTestID)) { string i = "Are You sure You want to ...
0
votes
1answer
69 views

Firefox 11.0 hangs with antiforgerytoken

I have two XP Professional setups running FireFox 11.0. One of them works the other one whenever I submit my edit page FF attempts to reconnect (connecting message with the spinning icon) and ...
9
votes
5answers
2k views

Why does HttpAntiForgeryException occur randomly even with a static Machine Key?

We have an ASP.NET MVC 2 (.NET 4) application running on Windows Azure (latest 2.x OS version) with two web role instances. We use the anti-forgery token supplied by MVC for all POST requests, and we ...
12
votes
1answer
784 views

Any reason not to trust ASP.NET AntiForgeryToken?

I know that Stack Exchange sites do not use the ASP.NET MVC built-in @Html.AntiForgeryToken() for the prevention of XSRF/CSRF attacks. Instead of creating a hidden input named ...
0
votes
1answer
785 views

Mvc3 Antiforgery token multi tabs

we have a specific issue with the anti forgery token on the login page. If the user logs in with only one active window everything works great however if the user opens the login page in two different ...
0
votes
1answer
125 views

Is it possible to use the MVC3 AntiForgeryToken from a non-MVC3 client (and use it in a SignalR hub)?

With SignalR, in my web app, I am invoking server-side methods from the client using JavaScript. The Hub is in a MVC3 project, and the client calls are made from a classic ASP application (since it's ...
0
votes
1answer
376 views

Asp.Net MVC 3 Secure Login

I have Asp.Net MVC 3 site that has SSL on entire site. I do have Login action on controller that accepts userName and password and returns Token that is user for calling other actions in web ...
2
votes
2answers
694 views

Anti forgery token on login page

I have implemented antiforgery token on my login page. Now I had one user pressing back key on the keyboard, and when they click on login button again after filling their credentials, they get error ...
3
votes
1answer
961 views

How to use anti forgery token with ajax wcf service

I have a ASP MVC website that is using wcf service via ajax in JSON encoding. Is there any build in way to use anti forgery token with ajax <--> wcf service? Here is how it's used in asp mvc apps. ...

1 2 3