Free app to reproduce MAC addresses on android

There is 1 reply in this Thread which was already clicked 223 times. The last Post () by Chris230291.

  • If you are trying to generate MAC addresses, you could do something like this in Python.


    Code
    import itertools
    
    macs = []
    
    for x, y, z in itertools.product(range(256), range(256), range(256)):
        macs.append(f"00:1a:79:{x:02x}:{y:02x}:{z:02x}")
    
    with open("macs.txt", "w") as file:
        file.write('\n'.join(macs) + '\n')

    This generates every possible MAC starting with "00:1a:79" which is the most common (MAG boxes)


    The forum wouldn't let me attach the output file.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!