OkCupid had a CSRF vulnerability (via) Good write-up of a (now fixed) CSRF vulnerability on OkCupid. Their site worked by POSTing JSON objects to an API. JSON POSTs are usually protected against CSRF because they can only be sent using fetch()
or XMLHttpRequest
, which are protected by the same-origin policy. Yan Zhu notes that you can use the enctype="text/plain"
attribute on a form (introduced in HTML5) and a crafty hidden input element with name='{"foo":"' value='bar"}'
to construct JSON in an off-site form, which enabled CSRF attacks.
Recent articles
- Qwen2.5-Coder-32B is an LLM that can code well that runs on my Mac - 12th November 2024
- Visualizing local election results with Datasette, Observable and MapLibre GL - 9th November 2024
- Project: VERDAD - tracking misinformation in radio broadcasts using Gemini 1.5 - 7th November 2024