Not sure if its the same thing or not but in my work with HP BIOS, needing to find gzip streams in files, I use this python script. It was the find_gz in the name that caught my eye, sorry if I'm way off on this one Tito. Code: import zlib from glob import glob def zipstreams(filename): """Return all zip streams and their positions in file.""" with open(filename, 'rb') as fh: data = fh.read() i = 0 while i < len(data): try: zo = zlib.decompressobj() yield i, zo.decompress(data[i:]) i += len(data[i:]) - len(zo.unused_data) except zlib.error: i += 1 for filename in glob('*.ROM'): #change to meet your file extension print(filename) for i, data in zipstreams(filename): print (i, len(data)) Output looks like (Showing file size and len of data 'if any')
@Mazzif Sorry for late reply. Thanks for the Python script. The idea is almost same - you need to find out the gzip streams in the Samsung exe & thus extract the files from it.
View attachment 30011 Awesome Dirty Do Checksum Checker V3 HP Compaq BIOS Decompressor incl. Source Code and explanation
I want to change the mac address of ASUS H87M-pro (NIC realtek 8111) you know tell me which tool you use? I tried with AFUDOS 4.33 with negative results: error bios is write-protected thank you