BIOS Tools

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

  1. CodeRush

    CodeRush MDL Member

    Jun 20, 2011
    221
    674
    10
  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 Expert

    Oct 22, 2010
    1,013
    1,116
    60
    @seawea

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

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #487 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  5. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #488 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  6. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #489 quid, May 16, 2014
    Last edited by a moderator: Apr 20, 2017
  7. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #490 quid, May 25, 2014
    Last edited by a moderator: Apr 20, 2017
  8. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #491 quid, May 25, 2014
    Last edited by a moderator: Apr 20, 2017
  9. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #492 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  10. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #493 quid, Jun 28, 2014
    Last edited by a moderator: Apr 20, 2017
  11. Mazzif

    Mazzif Elitebook Pwner

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

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #495 quid, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
  13. Tito

    Tito Admin / Adviser
    Staff Member

    Nov 30, 2009
    19,079
    19,894
    340
    @quid

    Any way to download find_gz125.exe without forum registrations?

    :hug2:
     
  14. Mazzif

    Mazzif Elitebook Pwner

    Oct 18, 2013
    322
    454
    10
    #497 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 Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #499 quid, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017
  16. quid

    quid MDL Expert

    Oct 22, 2010
    1,013
    1,116
    60
    #500 quid, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017