do bruteforcing with python

Advertisements I would like to do bruteforcing with python but with special parameters. So far I got import os ########################## #########algarithm######### x=0 for x in range(10,21): char=itertools.product("0123546798ABCDEFGHIJKLMNOPQRSTUVWXYZ#$qwertyuiopasdfghjklzxcvbnm",repeat=x) for pin in char: pinready=”.join(pin) print(pinready) The problem is that it goes through each one and it takes too long. I’d like for the first three characters to… Read More do bruteforcing with python