Urgent.News

What's breaking now, across thousands of outlets.

Tech

Why You Should Remove EXIF Data Before Sharing Photos

Every photo from a phone or camera carries a block of hidden information called EXIF (Exchangeable Image File Format) metadata. It is useful for photographers and for organizing libraries, but it can reveal far more than you intend when you share an image publicly or send it to a stranger. What EXIF data can contain Device details: camera or phone make and model, lens, and sometimes the serial…

When you share photos online, you should consider removing the EXIF data before doing so. EXIF (Exchangeable Image File Format) metadata is hidden information that comes with every photo taken by a phone or camera. While useful for photographers and organization, it can reveal private details when shared publicly or with strangers. This metadata includes device specifics, capture settings, exact timestamps, location data, software used, orientation, and a thumbnail copy of the image.

The significance lies in the potential for revealing personal information. A picture taken at home could expose the location of your residence. An image of a product you're selling may disclose where you live. Moreover, a sequence of timestamps might expose your daily routine. Journalists, activists, and people dealing with stalkers have real reasons to be cautious about sharing such data, but everyone should be aware of it.

Not all social networks automatically remove EXIF data, and policies often change. Therefore, it's crucial to check and remove it yourself before sharing any image. To do this, open the photo in a metadata viewer to view its contents. Once you've removed the metadata, export a clean copy and check again to ensure the location and device fields have been eliminated. Share the cleaned copy while keeping the original for your personal library.

To avoid uploading a photo just to strip its metadata, use a tool that operates entirely in your browser, so the image never leaves your device. There are also other ways to prevent leaking location. You can turn off location tagging in your phone's camera app settings. Taking a screenshot of the photo usually removes the GPS data, although it may lose some quality.

Additionally, on iOS and Android devices, the share sheet often provides an option to exclude location when sending a photo. Remember, the image itself can unintentionally leak information, such as street signs, house numbers, reflections, and landmarks.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

JSON vs YAML: When to Use Which

JSON and YAML can describe the same data, so the choice comes down to who (or what) reads and writes the file. JSON is strict, small, and easy for software to parse.

  • JSON is strict and compact, ideal for software parsing
  • YAML is forgiving and user-friendly for humans
  • Use JSON for software-to-software data exchange

Regex Cheatsheet for Beginners (With Copy-Paste Examples)

Regular expressions look cryptic at first, but a small set of building blocks covers most real-world tasks: validating input, searching logs, and doing bulk find-and-replace.

  • Dot character . matches any character except newline
  • Character classes like [abc] match specific options
  • Quantifiers specify occurrence counts like , +, ?

How to Decode a JWT Safely (Without Sending It to a Server)

A JSON Web Token (JWT) looks like an opaque blob, but it is just three Base64URL-encoded pieces joined by dots. Anyone who holds the token can read what's inside; no secret key is needed.

  • A JWT consists of three encoded sections linked by dots
  • Header and payload can be decoded into JSON to reveal metadata and claims
  • Signature remains untouched as binary data, do not decode it

More from Saturday 26 September →