if i had a nickel for every time i've seen someone's self-hosted blog with unredacted geolocation exif in the images, i'd have three nickels from today alone
four. i'd have four nickels.
five nickels.
i'm at a point now where if i'm reading your self-hosted blog and i see a photo that looks like it was taken on a smartphone i immediately get worried
(and then i check the exif tags and if they're leaking your address i email you)

@luna

if, like me, you've been following Luna's comments on this and getting increasingly nervous, here is a command for removing all location metadata from JPG/WEBP images (the usual offenders) in a directory tree on Unixy platforms, assuming your paths don't contain spaces.

for file in $(find . -name "*.jpeg" -or -name "*.jpg" -or -name "*.webp"); do exiftool -gps:all= $file; done

GitHub - allanlw/gps-detect: Firefox addon for detecting GPS EXIF info in JPEGs automatically

Firefox addon for detecting GPS EXIF info in JPEGs automatically - allanlw/gps-detect

GitHub

@cliffle @luna

You don't even need the loop!

find . -name "*.jpeg" -or -name "*.jpg" -or -name "*.webp" -execdir exiftool -gps:all= "{}" \;