Live data from Hacker News

Google Plans to Deprecate FTP URL Support in Chrome

pulltech.net

21–30 of 350 posts

Re: Google Plans to Deprecate FTP URL Support in Chrome

#21
post #6
post #5

Not bothered by this. No one should be running FTP in 2019. It sends passwords in plain text for christ's sake.

No one really uses FTP to transmit anything secret or confidential. Most of the time the password to that FTP server is just "guest" and the same file can also be retrieved by HTTP without authentication.

[deleted]

Re: Google Plans to Deprecate FTP URL Support in Chrome

#22
post #5

Not bothered by this. No one should be running FTP in 2019. It sends passwords in plain text for christ's sake.

The same could be said for HTTP... FTPS and SFTP do exist. That said, I agree that its outmoded today.

You'd think it's outmoded, but when the systems you're integrating with provide and expect multi-gigabyte files, the ability to append to a single file in a straightforward way and get some posix-ish APIs becomes a real life saver.

Re: Google Plans to Deprecate FTP URL Support in Chrome

#23
post #6
post #5

Not bothered by this. No one should be running FTP in 2019. It sends passwords in plain text for christ's sake.

No one really uses FTP to transmit anything secret or confidential. Most of the time the password to that FTP server is just "guest" and the same file can also be retrieved by HTTP without authentication.

> Most of the time the password to that FTP server is just "guest" and the same file can also be retrieved by HTTP without authentication. reply

So...no reason for FTP in the browser, since it already supports HTTP?

Re: Google Plans to Deprecate FTP URL Support in Chrome

#24

Google don't want users, they want pliant consumers. The idea that young people know more about tech than their parents will become less and less true in the future.

I saw a 6th grader using filezilla to update his website the other day. 99% of people didnt know what ftp was 10 years ago, that hasn't changed. Every generation loves to trash the one below it, that certainly will never change.

Re: Google Plans to Deprecate FTP URL Support in Chrome

#25
post #15

Earlier quoted context omitted.

Why do we need a separate legacy protocol for file transfers? What’s the benefit in keeping protocols for the sake of it?

We need a protocol for file transfers because having a protocol makes it more standardized and interoperable than if everyone rolls their own solution. Do we need browser support for it? It still happens now and then that a link will have an ftp target. That could be handled in the browser or it could open a separate url-handling application, as e.g. email or magnet urls do.

Yes, but as someone who's been around when FTP was a big thing, and HTTP only just came into fruition... what, really, is the benefit of FTP? In fact, FTP is actually a horrible protocol, that caused me much pain even back then:

It uses separate "command" and "data" channels. The data channel is usually in the other direction, i.e. the client listens to a connection from the server when downloading a file. Passive mode, and an extra command for that, had to be implemented, and if the stars don't align right, it still ends up being a pain.

FTP also used to default to 7bit. If you did not explicitly switch to 8bit mode, you got corrupted downloads. This maybe made sense in a world with fundamentally different encodings, line endings, and where connection speeds were slow enough that downloading text files was a big task, but now?

Then, if I remember correctly, the file listing you got was not actually standardized, it could just be the output of the "ls" command on the server! FTP clients used to be dumb and just passed that output through to you, so it did not matter much. For smarter clients later, it did start to matter.

Finally, what does FTP actually offer that, in most cases, HTTP, and, in niche cases, rsync, scp or sftp do not offer?

Re: Google Plans to Deprecate FTP URL Support in Chrome

#26

I'm personally fine with this. FTP is a different protocol, just like BitTorrent. It's not part of the modern web, so it's just another loose end to tie up. Even though it will be around for a while, it's not relevant to Chrome's user audience/usecase.

And it's not a great protocol.

Re: Google Plans to Deprecate FTP URL Support in Chrome

#27
I know for a fact that HP distributes software and drivers over FTP files that they link to on their website.

FTP isn't used much anymore, but IMO/IME, it's still nice to have for those rare times when you come across a file that you need to download and it's served over FTP.

Re: Google Plans to Deprecate FTP URL Support in Chrome

#30

Google don't want users, they want pliant consumers. The idea that young people know more about tech than their parents will become less and less true in the future.

Why do we need a separate legacy protocol for file transfers? What’s the benefit in keeping protocols for the sake of it?

FTP is basically useful as a single-use protocol: file transfer only. File transfer only allows a more stripped-down, dedicated server with better security. Vsftpd and others have excellent security specifically tailored to permission-based file transfers with access control lists etc. You will rarely find a comparable http option. It's not perfect, but there are also good partes and reasons why it's still around. Secure FTP is still a good option for some cases.
Post reply on HN