Can a json string contain HTML tags with it?

后端 未结 4 1361
别跟我提以往
别跟我提以往 2020-12-30 10:41

Consider this my json string,

[{
  \"Mat_id\": \"2\",
  \"Mat_Name\": \"Steel\",
  \"Measurement\": \"mm\",
  \"Description\": \"Steel\"
}]

4条回答
  •  感动是毒
    2020-12-30 11:42

    Technically, yes, you can do that... practically, I'd be a bit concerned if there were HTML markup in my data. What else might be in there? Smells like an XSS vulnerability.

提交回复
热议问题