Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 292 Bytes

description.md

File metadata and controls

26 lines (18 loc) · 292 Bytes

CodeDict

Made for brute-forcing

Usage

from codedict import Codes

Traversing the dictionary

for psw in Codes.top1000():
    ...

Dictionary concatenation

top1000 = Codes.top1000()
wpa = Codes.wpa()
for psw in top1000 + wpa:
    ...