Prove Your Mobile Upload Removed EXIF GPS Before the Retry Queue Keeps a Copy

작성자

카테고리:

← 피드로
DEV Community · Roronoa · 2026-07-19 개발(SW)

Roronoa

A user selects a photo containing GPS coordinates, capture time, and orientation. The preview looks clean, but the background retry queue still holds the original file and uploads it after restart.

Build privacy fixtures

Create synthetic JPEG and HEIC samples with known metadata—never personal photos. Record expected orientation and a fake GPS location such as 0.0, 0.0 plus an unmistakable fixture marker.

select original -> normalize orientation -> strip metadata
-> write sanitized temp file -> enqueue sanitized path -> upload

Enter fullscreen mode Exit fullscreen mode

Path Pass condition foreground upload intercepted bytes contain no GPS/time background retry queue references sanitized file app restart original path is not restored thumbnail no metadata copied back upload failure both files follow declared cleanup policy

Intercept the request in a test server and inspect the uploaded bytes, not only the UI preview. Compare pixel orientation separately from metadata removal; stripping orientation without rotating pixels can produce a sideways image.

Record device, OS, framework, image type, permission state, and app build. Verify temporary files are excluded from cloud backup and deleted after success or expiry.

This protocol covers selected JPEG/HEIC fixtures, not every vendor codec or edited media format. Platform image APIs may change metadata behavior across OS versions. Which artifact is riskier in your app: the upload body, retry queue, thumbnail cache, or backup?

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다