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.
Your forum for all other Android TV Box support.
Access firmware, downloads, and community help for models not covered elsewhere. Support for unlisted Android TV Boxes. Find firmware, tools, and downloads for models outside our main categories.