I’m aware that the default encryption provided by the zip command in Linux isn’t considered to be secure, but I’m curious – what algorithm does it use when encrypting with the --encrypt option?
I’m aware that the default encryption provided by the zip command in Linux isn’t
Share
Since the zip command will write out PKZIP files, it would follow they’re implementing the specs for that. Apparently the format allows for several distinct ciphers, the one typically considered “insecure” looks like it’s homegrown.
See here for a detailed discussion of how to break it, including some insights into the original algorithm: http://math.ucr.edu/~mike/zipattacks.pdf