__ .-----.----.|__|.--.--.---.-.----.--.--. | _ | _|| || | | _ | __| | | | __|__| |__| \___/|___._|____|___ | |__| |_____| == removing metadata and evading web crawlers ```sh exiftool -all= some-image.jpeg # the original will be renamed as # verify everything is gone location, make and model of camera exiftool some-image.jpeg # optional: resize convert some-image.jpeg -resize 500x500 some-image.png # generate uuid dir (the htdoc path doesn't have to exist) uuidgen --sha1 --name username.freeshell.org/images/some-image.png --namespace @url # on freeshell mkdir -p html/UUID mv some-image.jpg to html/UUID/ ``` == tor as a socks proxy == installed on raspbian (debian bookworm) ``` # install package sudo apt install -y tor # configure socks proxy echo "SocksPort 0.0.0.0:9050" | sudo tee -a /etc/tor/torrc # change this to reflect your own local network cidr echo "SocksPolicy accept 192.168.1.0/16" | sudo tee -a /etc/tor/torrc sudo systemctl restart tor # test locally curl --fail --proxy socks5://localhost:9050 \ https://check.torproject.org/api/ip ``` set your socks5 proxy server on other devices as ip/hostname of your socks proxy. references ---------- [1]: https://support.torproject.org/little-t-tor/troubleshooting/check-for-leaks/