BIOS Tools

Discussion in 'BIOS Mods' started by amiga, Aug 21, 2007.

  1. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #501 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  2. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #502 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  3. Mazzif

    Mazzif Elitebook Pwner

    Oct 18, 2013
    322
    431
    10
    #503 Mazzif, Jul 9, 2014
    Last edited by a moderator: Apr 20, 2017
  4. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #504 quid, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
  5. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,094
    17,208
    340
    @quid

    Any way to download find_gz125.exe without forum registrations?

    :hug2:
     
  6. Mazzif

    Mazzif Elitebook Pwner

    Oct 18, 2013
    322
    431
    10
    #506 Mazzif, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
    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')
     
  7. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #508 quid, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017
  8. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #509 quid, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017
  9. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,094
    17,208
    340
    @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.
     
  10. spiderman_pink

    spiderman_pink MDL Member

    Jul 1, 2009
    140
    4
    10
    im looking for a an insyde flasher that works with windows xp. anyone has any info? o_O
     
  11. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #512 quid, Jul 21, 2014
    Last edited by a moderator: Apr 20, 2017
  12. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #513 quid, Jul 21, 2014
    Last edited by a moderator: Apr 20, 2017
  13. quid

    quid MDL Addicted

    Oct 22, 2010
    636
    786
    30
    #514 quid, Jul 21, 2014
    Last edited by a moderator: Apr 20, 2017
  14. thiencqcq

    thiencqcq MDL Novice

    Nov 19, 2009
    5
    0
    0
    View attachment 30011


    Awesome Dirty Do Checksum Checker V3 HP Compaq BIOS Decompressor incl. Source Code and explanation
     
  15. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,094
    17,208
    340
  16. accrox

    accrox MDL Novice

    May 28, 2010
    3
    0
    0
    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 o_O

    thank you
     
  17. Flipp3r

    Flipp3r MDL Expert

    Feb 11, 2009
    1,807
    811
    60
    Just did a google "PG8168 - EEPROM/EFUSE". Seems to be the tool you need.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...