your_username t1_j6e8ms2 wrote on January 29, 2023 at 6:59 PM Reply to Uncover suspicious shortened URLs. Show the destination behind TinyURL link. Helpful when you're not sure of the source of the link or if you're worried about clicking on something potentially malicious. by unskilledexplorer Nice, clean webpage — thank you for making this! curl -sL <short_link> | grep -oE '<a[^>]+href="([^"]+)"[^>]*>' | cut -d'"' -f2 Permalink 1
your_username t1_j3e5v4h wrote on January 7, 2023 at 10:49 PM Reply to Free online Paint tool - unlimited layers, etc. by mathiasn001 Also check out r/photopea Permalink 18
your_username t1_j6e8ms2 wrote
Reply to Uncover suspicious shortened URLs. Show the destination behind TinyURL link. Helpful when you're not sure of the source of the link or if you're worried about clicking on something potentially malicious. by unskilledexplorer
Nice, clean webpage — thank you for making this!
curl -sL <short_link> | grep -oE '<a[^>]+href="([^"]+)"[^>]*>' | cut -d'"' -f2