Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过使用压缩来节省网络带宽,例如 bzip2 或 gzip。
攻击者以及普通用户可能会发送压缩消息。
是否存在字节序列会导致某些解压缩函数陷入无限循环或使用大量内存?
是这样,这是这些算法的基本属性,还是只是一个实现错误?
我只能为zlib的膨胀说话。没有会导致无限循环或不受控制的内存消耗的输入。
由于deflate的最大压缩比小于1032:1,那么inflate在正常工作时可以膨胀到几乎1032:1。你只需要能够处理这种可能性。