Cross Site Request Forgery is a malicious attack to exploit a website's trust in a user's browser.

learn more… | top users | synonyms (1)

-2
votes
0answers
53 views

add a line of code to the original code

I would like to know is there any way to add a line of code to the existing original code for example the following: Original code: <form action="demo.asp" method="get" target="_blank"> First ...
0
votes
0answers
13 views

CSRF projection in JSF

I'm using JSF 2 with Mojarra 2.1.10 on Jboss 7.1. I'm wondering if the current implementation of ViewState in this version is protection enough agaisnt CSRF. I've read some contradicting information ...
1
vote
1answer
36 views

Perl REST::Client best way to get and use CSRFToken and session id through cookies

So right now I'm using REST::Client which does a perfectly good job when it comes to making GET requests and fetching JSON data. However, the API in question, when issuing a POST request, should pass ...
0
votes
0answers
7 views

RSA authentication and CSRF attacks

If I use RSA authentication for my web app would I still need to take care of CSRF attacks by using tokens or RSA authentication will take care of it.
0
votes
0answers
19 views

cloud endpoints csrf protection

I'd like to send an csrf protection token with every cloud endpoints request, but I don't want to have to specify this every time I call one of my services. How would I implement a sort of proxy, that ...
0
votes
1answer
13 views

How can Rails have different csrf tokens at different times?

tl;dr In my product, rails seems to have different csrf tokens on different page visits, but I thought that there was only one csrf token per session. Am I misunderstanding how rails' csrf token ...
0
votes
1answer
44 views

angular, django and csrf

from http://docs.angularjs.org/api/ng.$http , it says we should set default headers to include the token, so i am following it. my code goes something like this var myapp = angular.module('myapp', ...
2
votes
1answer
27 views

Passing csrf token to Stripe

I am using stripe.js for stripe payments. I need to setup a callback wenhook to receive the request from stripe. Since the webhook is posted to by stripe - I have marked it as csrf_excempt. Is ...
0
votes
2answers
30 views

Site-wide form with Symfony2?

I have simple form at all site pages: username, password, [Sign In] I tried to make with with simple HTML, but I get The CSRF token is invalid. Please try to resubmit the form Idea to make form in ...
0
votes
0answers
10 views

NoCSRF token ,Session Changes on pageLoad

I am developing a new site for my learning purpose. Implementing CSRF check using noCSRF token library which i got it from http://bkcore.com/blog/code/nocsrf-php-class.html noCSRF token was working ...
0
votes
0answers
36 views

SOLVED Facebook CSRF Error, Its depend on domain? [closed]

I have searched this problem and found many related question. Their problem solved with edit base_facebook.php, or edit .htaccess, or others. but my question not described an not related with it. ...
0
votes
0answers
18 views

How do CSRF tokens protect from malicious GET followed by POST in another tab

I know I am missing something, but please help me understand. Consider this situation: I have a website called goodbank.com. URL http://goodbank.com/transfer/ serves a HTML page on GET with a form to ...
0
votes
1answer
28 views

Let the csrf token expire in the user session after 15 minutes or remove it directly?

Today i've added crsf protection in my webapplication. When a html for is printed i generated random token and put it in a hidden field and in user session. When form is submitted i read hidden ...
0
votes
1answer
24 views

GWT RPC XSRF protection

After adding GWT RPC XSRF protection what should be different in the RPC calls? I followed the changes mentioned in this post(GWT (2.4.0) + XSRF and ...
0
votes
1answer
27 views

How to prevent CSRF Attack in ajax application

can anyone help me how to prevent csrf attack in ajax application. in our application ( PHP + JQuery ) main form is loaded only once and all other forms will be loaded on request using ajax . For ...
0
votes
1answer
31 views

Adding CSRF anti-spoofing to Sencha forms

I made Sencha frontend app and its backend was done with PHP/Joomla. Data sent by Sencha JS app is validated and saved using PHP with Joomla framework. How can i create CSRF token in Sencha JS app ...
1
vote
3answers
83 views

PHP CSRF Attack

I want to know if this code is strong enough to prevent CSRF attack on PHP Form? <?php session_start(); session_regenerate_id(true); if (isset($_POST['submit'])) { if (isset($_SESSION['token']) ...
0
votes
0answers
32 views

Jquery cross site login with GET + POST

I am attempting to script a login to a django site. I have used Chrome's Advanced REST Client to post credentials and successfully login. In theory I should be able to use jQuery to script login. In ...
0
votes
1answer
21 views

Codeigniter CSRF denying access to login form when www is omitted

I am building a site with codeigniter and CSRF is set to true and is working perfectly. I have overidden CSRF to switch it off on one form just to cater for the particular details of that complicated ...
1
vote
2answers
43 views

Preventing CSRF and XSRF Attacks for jQuery $.post

I was recently hit by a simple CSRF attack and realized a lot of my ajax scripts are open. These are accessed on my site with $.post(). Is there a way to automatically add a PHP token to all of ...
0
votes
1answer
36 views

Symfony2 plugin for links CSRF protection

Is there any plugin that works this way? I've found KnpRadBundle, but i got working project and adjusting it to a new framework would be very long and unnessesary. Do anybody knows such a plugin? In ...
2
votes
1answer
59 views

django csrf for api that works with ios apps

I am building an ios app that communicates with the server for getting the data. If its just a normal app, I can send csrf token via forms (since all from same domain). But, for ios apps, I dont ...
2
votes
1answer
53 views

passing CSRF credentials as url parameters?

How do you handle csrf credentials sent to django as url parameters? I ask because that is, evidently, the only way to submit a file upload via a form in an iFrame. Most online examples show to pass ...
1
vote
1answer
67 views

CSRF: Generate token for every request

Right now, we have csrf token per session. And adding this token jsp's using hidden field. following snippet gives only one per session: token = (String) ...
1
vote
1answer
23 views

Can CSRF happen in an API?

The web application framework we use has built-in support for handling Cross-site Request Forgery. This works well when data is posted with a browser to our webserver. Currently we are developing an ...
1
vote
1answer
98 views

Zend Framework 2 CSRF Protection

Currently I try to use the CSRF Protection of the Zend Framework 2. But everytime I send my form, I got this error message: The form submitted did not originate from the expected site I have ...
0
votes
3answers
39 views

How much of an html form can be altered without triggering CSRF protection?

I implemented CSRF protection by including a token with PHP into a hidden input for every form. Each token can only be used once, of course. However, there are tools, such as any web developer tools, ...
2
votes
0answers
97 views

AJAX and CSRF in Spring

I'm sending a CSRF token in an HTTP request header and in a POST hidden field to guard against CSRF attacks something like the following. var request; var timeout; function insert(callback) { ...
-1
votes
0answers
29 views

How Security Token Can Save Me From CSRF Attack [duplicate]

It is the second day that I am searching and trying to find the solution but still I am failed. There could be two reasons. Either I have not understood the Concept of CSRF OR I am not getting ...
5
votes
2answers
104 views

How to properly end a users session?

I've been working on the security of my site (PHP) and there's a ton of information to ingest. I've tried to implement security I've researched on OWASP, but one thing I'm a little nervous about, ...
0
votes
0answers
40 views

How to Handle CSRF Security Token on Multiple Pages [duplicate]

I have a user discussion website. There are so many threads on my website. When Some User Opens a thread a CSRF Security token is being generated to be used in the comment form if ...
0
votes
1answer
40 views

Django csrf token uses

I am building a server api that will have mobile devices and javascript as the frontend. All the post request contain json encoded data. Now I am not sure if I should have the views csrf protected or ...
0
votes
0answers
80 views

rails 401 error even after i set X-CSRF-Token header successfully

I am making a signup form and wanted to use jquery-validation plugin to check that user_name is unique. The routes: resources :users, :only => [:show] do collection do ...
1
vote
3answers
59 views

How can I embed a CSRF token in a JavaScript file?

I have a Node.js application in which I have implemented CSRF. It's working fine, and when I had some JavaScript inline in a JADE file, I simply used #{token} to get the token into the JavaScript. ...
4
votes
1answer
80 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 ...
1
vote
1answer
63 views

Django CSRF verificCSRF verification failed. Request aborted

This is a very old question and many similar results related to it, but I simply can not find the correct way to solve it. I am working with Django 1.5, I have a fairly simple attempt try to use ...
0
votes
1answer
16 views

How can I block wrong CSRF requests on Rails?

When I make a request to my Rails app with a wrong CSRF token I get: WARNING: Can't verify CSRF token authenticity in the logs, but I want to block those requests, not get a warning. How can I do ...
0
votes
1answer
20 views

Headering X-csrftoken

I need create a log-in script to some form. The problem is that the log-in required a X-scsrf-token. I have the token itself, but the problem is that I cant find a way to send this parameter. Thank ...
0
votes
0answers
173 views

error_log -CSRF state token does not match one provided

Why should there be an error? CSRF state token does not match one provided code $uid = $facebook->getUser(); $login_url = $facebook->getLoginUrl// ( array ...
0
votes
1answer
172 views

Prevent CSRF Attack for PUT and Delete request ASP.NET Web API

Does ValidateAntiForgeryToken work for PUT and Delete Requests or only for post request in ASP.NET Web API? If not, What is the best way to make it secure?
1
vote
2answers
188 views

How is using Synchronizer Token Pattern to prevent CSRF safe?

I have been reading about using a synchronizer token pattern to prevent CSRF (CSRF meaning Cross-site request forgery.), and I don't understand how it actually safe. Let's say I have a fake bank site ...
0
votes
0answers
45 views

NPE in CSRFGuard

I want to protect my app from csrf, so I add owasp.csrf.jar and configure my app as described here Then I add hidden field to one of my forms with csrf token tags, like this: <input type="hidden" ...
2
votes
1answer
58 views

Sending a jQuery POST to a Django View

I am sending a POST request via $.ajax() to a Django view from a page that is on HTTP - I used the AJAX snippet for CSRF provided here. I can view the csrftoken cookie as Secure in Firebug; I suppose ...
0
votes
3answers
624 views

Symfony2 The CSRF token is invalid. Please try to resubmit the form

I have a form that keeps getting the "The CSRF token is invalid. Please try to resubmit the form." I have been unable to find the cause. I know it is something simple. any help would be appreciated. ...
1
vote
2answers
81 views

Is the security attack through query string is a CSRF attack? How to prevent attack from query string?

Someone is trying to access our server page with invalid query string which throws exception. query string =./../../../../../../../../../windows/system32md.exe Exception: Could not find file ...
0
votes
2answers
134 views

Generate CSRF token dependig on datetime

Exists some way in Symfony 2 to generate CSRF token at each rendering of form? In my controller I tried something like this: $request = $this->get('request'); if ($request->getMethod() != ...
1
vote
1answer
54 views

Forbidden by CSRF on my registration form, not sure why

I have setup CSRF on my Express v3 app, and I have it like this: app.use(express.session({ secret: "gdagadgagd", cookie: { httpOnly: true, path : '/', maxAge: 1000*60*60*24*30*12 } ...
0
votes
0answers
81 views

CodeIgniter CSRF working in IE not chrome or Firefox

I have done my best to troubleshoot this issue but have not been able to get this to work cross-browser. Here is a link to the CodeIgniter document page http://goo.gl/YCKU7, scroll down to the bottom ...
2
votes
1answer
122 views

Set config item (csrf) doesnt work in Codeigniter

I want to turn ON csrf protection only in a few of my controllers, so I have function __construct() { parent::__construct(); $this->load->library('form_validation'); ...
2
votes
1answer
167 views

Django + Gunicorn + Nginx = CSRF cookie not set

I've set up Django behind Nginx with Gunicorn, but when I try to log in to the admin panel, I get: Forbidden (403) CSRF verification failed. Request aborted. Reason given for failure: CSRF cookie ...

1 2 3 4 5 16