斑点 Blob是处理非结构化数据的一种好方法。 它使您可以对数据(位,字节,整数等)进行不同的查看,运行分析并轻松地对数据进行切片。 我写它的目的是为Shellphish节省一些时间来应对加密和取证挑战。 它能做什么 Blob提供了一个Blob类,它启用了各种很酷的操作: # blobs can be created from byte or bit data a = blob . Blob ( 'ABCD' ) a = blob . Blob ( data_bits = '01000001010000100100001101000100' ) assert a == b # blobs seamlessly translate between the two assert a . data_bits == '01000001010000100100001101000100' asser