All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

How to Identify Base64 Encoded JSON and Other Data Formats

By

jandeboevrie

9mo ago· 2 min readen

Summary

The article describes a personal experience where the author discovered that a seemingly indecipherable string in a file was actually base64 encoded JSON, thanks to a colleague's insight. The colleague demonstrated how to identify such encoded content without tools, highlighting a useful skill for developers.

Key quotes

· 3 pulled
The problem is that this file is generated by taking a password, deriving a key from it, and encrypting the content with that key.
It turns out that everyone can spot base64 encoded json.
I couldn't believe he was base64 decoding on the fly without tools, so I asked him how he did it.
Snippet from the RSS feed
A colleague was able to spot that a long string of gibberish was base64 encoded json. I couldn't believe he was base64 decoding on the fly without tools, so I asked him how he did it. It turns out that everyone can spot base64 encoded json.

You might also wanna read