Live data from Hacker News

Ever wondered how many open FTP servers there are?

github.com

41–50 of 100 posts

Re: Ever wondered how many open FTP servers there are?

#41
post #24

Side note: "xz -9 -e" compresses the file to 3,296,864 where as "lz5 -15" only compresses the original file to 4,643,261 bytes. The xz compressed file is 29% smaller. Even "gzip -9" compresses the file to 4,035,858. So I wonder why lz5 was chosen for compression.

How long did that "xz -9 -e" take compared to "lz5 -15" or "gzip -9"?

Re: Ever wondered how many open FTP servers there are?

#42
post #14

I got my first internet account on my high school's VAX in 1992 in order to download Dr. Dobb's code from ftp.mv.com. The VAX had a help file installed which was a list of thousands of anonymous FTP servers, most of which requested that you please not use anonymous FTP during business hours to avoid overloading them; shortly I was downloading all kinds of things from wuarchive.wustl.edu (which had a LOT of stuff) and…

In my youth, I probably downloaded hundreds of gigabytes from wuarchive.wustl.edu, ftp.cdrom.com, metalab.unc.edu, and the like. Over a dial-up modem, no less.

Before I had local Internet access (i.e., long distance calls), I used the various "FTP by e-mail" services with my free "Juno" e-mail account (they had toll-free numbers for access!).

Re: Ever wondered how many open FTP servers there are?

#43
post #34

Earlier quoted context omitted.

https://github.com/Homebrew/brew/blob/master/Library/Homebre...

Ah, it'd be a cask? Cool, thanks.

https://github.com/Homebrew/homebrew-core/blob/master/.githu... Is a better link. It would just be a new formula in homebrew-core

Re: Ever wondered how many open FTP servers there are?

#44
I can see having an open anonymous FTP that was read-only as a way of serving some files that needed to be downloaded and didn't contain any sensitive information. It's no different from providing a URL to them.

Or even a write-only one so people could deposit data.

The only real problem is a read-write one where people can use it to exchange information.

Re: Ever wondered how many open FTP servers there are?

#45
post #4

I remember back in the 90s, people would hunt for FTP servers that allowed anonymous writes. Companies that didn't know how to secure servers would suddenly be hosting a ton-o-warez.

Especially hidden down some deep directory structure, some directories even named .. and . to try to hide themselves.

I recall other folder names that would presumably make windows machines throw up when you clicked on them. Stuff with "LPT:" or "COM:" in the names.

Re: Ever wondered how many open FTP servers there are?

#47
post #24

Side note: "xz -9 -e" compresses the file to 3,296,864 where as "lz5 -15" only compresses the original file to 4,643,261 bytes. The xz compressed file is 29% smaller. Even "gzip -9" compresses the file to 4,035,858. So I wonder why lz5 was chosen for compression.

There's more low-hanging fruit before picking a different compressor, too. For instance, sorting the data:

    $ zcat openftp4_all_20160918.gz | sort | gzip -9 > sorted.gz

    $ ls -lha *.gz
    -rw-r--r--+ 1 mappu mappu 3.9M Sep 18 18:17 openftp4_all_20160918.gz
    -rw-r--r--+ 1 mappu mappu 2.2M Sep 18 18:19 sorted.gz
`zpaq` should out-compress xz on the unsorted file, too, but i haven't tried it.

Re: Ever wondered how many open FTP servers there are?

#48
post #45

Earlier quoted context omitted.

Especially hidden down some deep directory structure, some directories even named .. and . to try to hide themselves.

I recall other folder names that would presumably make windows machines throw up when you clicked on them. Stuff with "LPT:" or "COM:" in the names.

Warez ftp sites used to use high ascii in the file names. Used to have that memorized.

Re: Ever wondered how many open FTP servers there are?

#49
post #24

Side note: "xz -9 -e" compresses the file to 3,296,864 where as "lz5 -15" only compresses the original file to 4,643,261 bytes. The xz compressed file is 29% smaller. Even "gzip -9" compresses the file to 4,035,858. So I wonder why lz5 was chosen for compression.

How long did that "xz -9 -e" take compared to "lz5 -15" or "gzip -9"?

Numbers on my machine, ordered by compression duration:

    Compressor    Duration    Size
    cat           0.0s        11385584 [*]
    gzip -1       0.2s        4918778 [*]
    bzip2 -1      0.9s        3334653
    bzip2 -9      0.9s        3122347 [*]
    xz -1         1.1s        4222016
    gzip -9       2.4s        4085818
    lz5 -15       6.9s        4643261
    xz -9 -e      10.7s       4033589
    zpaq -m5      34.2s       2655834 [*]
A [*] indicates that no better compressor was faster. Test methodology was `cat | $compressor > output` run 3-4 times to get an average.

I'm surprised by how bzip2 turned out.

Re: Ever wondered how many open FTP servers there are?

#50
post #4

I remember back in the 90s, people would hunt for FTP servers that allowed anonymous writes. Companies that didn't know how to secure servers would suddenly be hosting a ton-o-warez.

I used to 'accidentally' 'misconfigure' my servers and watch what would show up. When a new group found such a server, it eas usually first used for 'internal distribution' of thr latest releases, especially if it was an fxp-capable server. After a while when it got more busy (hitting rate limits, disk full) it was downgraded to 'end user distribution'.

So I got to watch the latest leaked movies without having to directly deal with (spend time on) being 'inner circle' :)

Post reply on HN