← Cybersecurity Alphabet Soup

JSON

JavaScript Object Notation

protocolseasy

JSON is the plain-text format most of the modern web uses to move structured data: curly braces, key-value pairs, and lists that both humans and machines can read. Nearly every API request, log event, and configuration exchange you will inspect during an investigation is JSON. Parsing it safely matters too: deserialization bugs and injection through unescaped values are classic application flaws.

Sources

More in protocols

Go deeper