vote up 1 vote down star
1

Can the JSON data, returned by a POST request be stolen by a cross-site request forgery attack?

flag

1 Answer

vote up 1 vote down check

It cannot be done using JS, but I'm not sure about Flash's cross-domain request.

In JS POST request can be made via forms and XMLHTTPRequest. You can't see result of a cross-domain form, so that's safe. XHR forbids cross-domain requests, so that's safe too.

Browsers do allow cross-domain inclusion of scripts via <script> element, but that is using GET only.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.