![]() |
Split large wordlists into smaller files - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: Split large wordlists into smaller files (/Thread-Split-large-wordlists-into-smaller-files) |
Split large wordlists into smaller files - shp0ngl3 - 05-24-2013 It's not always efficient having to wait for 15 million attempts for a single account. So I wrote a simple script to split it into smaller files. Syntax: ./splitfile.py [filename] [new size] Example: ./splitfile.py rockyou.txt 50000 This will create X number of files with no more than 50k words in each Code: #!/usr/bin/python RE: Split large wordlists into smaller files - foxhound - 09-13-2013 this is just what i was looking for! thanks!!! |