To use a wordlist (large one "16 Gb") to crack a password issue i've downliaded a file in .lst form from: https://crackstation.net/buy-crackstation-wordlist-password-cracking-dictionary.htm
So when i try to readlines() the file to split lines it only read a 69100 line even the worlist contain more than a billion line.
ex:
passwordlist = str(raw_input("\nEnter the path name of the password list file : "))
list = open(passwordlist, "r")
passwords = list.readlines()
list.close()
for password in passwords:
attack(password.replace("\n",""))
i need to split the file into txt pieces using python whithout reading lines such as spliting a video or an audio.
anything could help please.