Difference between revisions of "Documentation"

From DJSON
Jump to: navigation, search
Line 1: Line 1:
 
<br/>
 
<br/>
 +
 +
== JSON ==
  
 
* [[Draft Jenkins JMAP]]
 
* [[Draft Jenkins JMAP]]
Line 12: Line 14:
 
:''JSON is the de facto standard when it comes to (un)serialising and exchanging data in web and mobile programming. But how well do you really know JSON? We'll read the specifications and write test cases together. We'll test common JSON libraries against our test cases. I'll show that JSON is not the easy, idealised format as many do believe. Indeed, I did not find two libraries that exhibit the very same behaviour. Moreover, I found that edge cases and maliciously crafted payloads can cause bugs, crashes and denial of services, mainly because JSON libraries rely on specifications that have evolved over time and that left many details loosely specified or not specified at all.''
 
:''JSON is the de facto standard when it comes to (un)serialising and exchanging data in web and mobile programming. But how well do you really know JSON? We'll read the specifications and write test cases together. We'll test common JSON libraries against our test cases. I'll show that JSON is not the easy, idealised format as many do believe. Indeed, I did not find two libraries that exhibit the very same behaviour. Moreover, I found that edge cases and maliciously crafted payloads can cause bugs, crashes and denial of services, mainly because JSON libraries rely on specifications that have evolved over time and that left many details loosely specified or not specified at all.''
  
* IETF WG Datatracker on '''[https://datatracker.ietf.org/wg/jsonbis/documents/ JSONbis]''
+
* IETF WG Datatracker on '''[https://datatracker.ietf.org/wg/jsonbis/documents/ JSONbis]'''
 +
 
 +
 
 +
==YAML==
 +
 
 +
* [https://codebeautify.org/yaml-validator Validateur YAML]
  
 
<br/>
 
<br/>

Revision as of 09:13, 21 August 2017


JSON

  • Parsing JSON Nicolas Seriot - Référence d'analyse pour le IETF/WG sur JSON.
JSON is the de facto standard when it comes to (un)serialising and exchanging data in web and mobile programming. But how well do you really know JSON? We'll read the specifications and write test cases together. We'll test common JSON libraries against our test cases. I'll show that JSON is not the easy, idealised format as many do believe. Indeed, I did not find two libraries that exhibit the very same behaviour. Moreover, I found that edge cases and maliciously crafted payloads can cause bugs, crashes and denial of services, mainly because JSON libraries rely on specifications that have evolved over time and that left many details loosely specified or not specified at all.


YAML