Curl.io – Share files from your terminal or ssh
21–30 of 68 posts
Re: Curl.io – Share files from your terminal or ssh
#22whaaat. does anyone else think this is slightly suspect and/or bogus?
Re: Curl.io – Share files from your terminal or ssh
#23Yikes, this should really be accessible only via HTTPS. Copying commands from untrusted websites (or insecure connections) and pasting them into your terminal is not a good idea: http://thejh.net/misc/website-terminal-copy-paste
Re: Curl.io – Share files from your terminal or ssh
#24Not your fault of course. We've all lost kittens to NAT.
Re: Curl.io – Share files from your terminal or ssh
#25Yikes, this should really be accessible only via HTTPS. Copying commands from untrusted websites (or insecure connections) and pasting them into your terminal is not a good idea: http://thejh.net/misc/website-terminal-copy-paste
Don't know about you, but an SSL certificate does nothing to increase my level of trust of a website.
Re: Curl.io – Share files from your terminal or ssh
#26Yikes, this should really be accessible only via HTTPS. Copying commands from untrusted websites (or insecure connections) and pasting them into your terminal is not a good idea: http://thejh.net/misc/website-terminal-copy-paste
You can just `man curl` and find out exactly what's going on here. (http://unixhelp.ed.ac.uk/CGI/man-cgi?curl, scroll down to the bit on "--form", and check out the example) I think curl.io, the service, merely accepts this form data and stores the file on their servers, allowing you access. But you should easily be able to point at your own HTTP server and do all the same stuff. I don't see any "magic" here, other than a little web app that's responsible for taking in the data and writing whatever that data is to a given filename.
Re: Curl.io – Share files from your terminal or ssh
#27Yikes, this should really be accessible only via HTTPS. Copying commands from untrusted websites (or insecure connections) and pasting them into your terminal is not a good idea: http://thejh.net/misc/website-terminal-copy-paste
That's not really relevant to what's going on here. This isn't some script you're blindly downloading/executing from an untrusted source, and it's certainly not a phishing attempt with a seemingly innocuous URL that is actually malicious once you copy it. You can just `man curl` and find out exactly what's going on here. ( http://unixhelp.ed.ac.uk/CGI/man-cgi?curl , scroll down to the bit on "--form", and check out t…
Re: Curl.io – Share files from your terminal or ssh
#28 curl -T filename http://curl.io/send/abc123Re: Curl.io – Share files from your terminal or ssh
#29I wonder what their file storage limits are. Can I send them /dev/random ?
Re: Curl.io – Share files from your terminal or ssh
#30Yikes, this should really be accessible only via HTTPS. Copying commands from untrusted websites (or insecure connections) and pasting them into your terminal is not a good idea: http://thejh.net/misc/website-terminal-copy-paste
Don't know about you, but an SSL certificate does nothing to increase my level of trust of a website.
If you don't trust curl.io, fine. But without TLS the list of people you need to trust is not only curl.io, but everyone else in the tubes too.