Skip to content Skip to sidebar Skip to footer

Parallel Compute Task To Brute-force In Python

/* This is not for anything illegal just that my school only uses 7 integers, and I want to see if I can get this to work in time as currently I need 1.59 years to crack a password

Solution 1:

Have you tried

with ThreadPoolExecutor as exe:
    exe.submit(conn)

It maybe that you aren't actually connected to the server

Post a Comment for "Parallel Compute Task To Brute-force In Python"