vote up 0 vote down star
1

Are there any security issues in using JSON for just data transfer, other than that it is plain text? Like, the eval() which poses a security issue when used in JavaScript. Are there any such issues, when JSON is just used to transfer data between computers and read by programs written in Java etc

flag

3 Answers

vote up 0 vote down

JSON can be used to execute JavaScript insertion attacks against any web client that uses it, unless the server (and only the server) takes appropriate precautions.

link|flag
Well, I am planning to use it only for data transfer that is used by programs other than JavaScript, in that case would that be a problem? – Ram Jul 27 at 13:58
vote up 0 vote down

Certainly. Sending out passwords unencrypted using JSON would be clearly a security issue. In general, JSON itself are just bytes; it's the interpretation that's given to them which may cause harm.

link|flag

Your Answer

Get an OpenID
or

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