BIOS Tools

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

  1. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #481 quid, Apr 13, 2014
    Last edited by a moderator: Apr 20, 2017
  2. seawea

    seawea MDL Novice

    Mar 9, 2014
    12
    0
    0
    Hi Guy, how to insert a uuid in aptio ami? I have a full bios 8192kb but update and backup its only 6200kb.
    how to unprotect? thanks
     
  3. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    @seawea

    Use AMIDEDOS/AMIDEWIN/AMIDELNX/AMIDEEFI.
     
  4. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #488 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  5. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #489 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  6. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #490 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  7. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #491 quid, May 25, 2014
    Last edited by a moderator: Apr 20, 2017
  8. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #492 quid, May 25, 2014
    Last edited by a moderator: Apr 20, 2017
  9. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #493 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  10. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #494 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  11. Mazzif

    Mazzif Elitebook Pwner

    Oct 18, 2013
    322
    441
    10
    #495 Mazzif, Jul 9, 2014
    Last edited by a moderator: Apr 20, 2017
  12. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #496 quid, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
  13. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,682
    18,581
    340
    @quid

    Any way to download find_gz125.exe without forum registrations?

    :hug2:
     
  14. Mazzif

    Mazzif Elitebook Pwner

    Oct 18, 2013
    322
    441
    10
    #498 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')
     
  15. quid

    quid MDL Addicted

    Oct 22, 2010
    792
    904
    30
    #500 quid, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017