├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dicts ├── altice-optimum │ ├── README.md │ ├── altice-optimum.txt │ └── generate.sh ├── ee-brightbox │ ├── 3-4_4-3.txt │ ├── 3-5_5-3.txt │ ├── 3-all.txt │ ├── 4-5_5-4.txt │ ├── 4-norm.txt │ └── 5-norm.txt ├── fios │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ └── 7.txt ├── netgear-spectrum │ ├── adjective_large.txt │ ├── combine.sh │ ├── netgear-spectrum.txt │ ├── noun_large.txt │ └── words.txt └── xfinity │ ├── 5.txt │ ├── 6.txt │ └── append_digits.sh ├── keyspace.md └── src ├── att.c ├── belkin.c ├── pskracker.c ├── pskracker.h ├── tools.c ├── version.h └── xfinity.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/README.md -------------------------------------------------------------------------------- /dicts/altice-optimum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/altice-optimum/README.md -------------------------------------------------------------------------------- /dicts/altice-optimum/altice-optimum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/altice-optimum/altice-optimum.txt -------------------------------------------------------------------------------- /dicts/altice-optimum/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/altice-optimum/generate.sh -------------------------------------------------------------------------------- /dicts/ee-brightbox/3-4_4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/3-4_4-3.txt -------------------------------------------------------------------------------- /dicts/ee-brightbox/3-5_5-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/3-5_5-3.txt -------------------------------------------------------------------------------- /dicts/ee-brightbox/3-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/3-all.txt -------------------------------------------------------------------------------- /dicts/ee-brightbox/4-5_5-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/4-5_5-4.txt -------------------------------------------------------------------------------- /dicts/ee-brightbox/4-norm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/4-norm.txt -------------------------------------------------------------------------------- /dicts/ee-brightbox/5-norm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/ee-brightbox/5-norm.txt -------------------------------------------------------------------------------- /dicts/fios/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/fios/3.txt -------------------------------------------------------------------------------- /dicts/fios/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/fios/4.txt -------------------------------------------------------------------------------- /dicts/fios/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/fios/5.txt -------------------------------------------------------------------------------- /dicts/fios/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/fios/6.txt -------------------------------------------------------------------------------- /dicts/fios/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/fios/7.txt -------------------------------------------------------------------------------- /dicts/netgear-spectrum/adjective_large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/netgear-spectrum/adjective_large.txt -------------------------------------------------------------------------------- /dicts/netgear-spectrum/combine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/netgear-spectrum/combine.sh -------------------------------------------------------------------------------- /dicts/netgear-spectrum/netgear-spectrum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/netgear-spectrum/netgear-spectrum.txt -------------------------------------------------------------------------------- /dicts/netgear-spectrum/noun_large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/netgear-spectrum/noun_large.txt -------------------------------------------------------------------------------- /dicts/netgear-spectrum/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/netgear-spectrum/words.txt -------------------------------------------------------------------------------- /dicts/xfinity/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/xfinity/5.txt -------------------------------------------------------------------------------- /dicts/xfinity/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/xfinity/6.txt -------------------------------------------------------------------------------- /dicts/xfinity/append_digits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/dicts/xfinity/append_digits.sh -------------------------------------------------------------------------------- /keyspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/keyspace.md -------------------------------------------------------------------------------- /src/att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/att.c -------------------------------------------------------------------------------- /src/belkin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/belkin.c -------------------------------------------------------------------------------- /src/pskracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/pskracker.c -------------------------------------------------------------------------------- /src/pskracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/pskracker.h -------------------------------------------------------------------------------- /src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/tools.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/version.h -------------------------------------------------------------------------------- /src/xfinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewjlamarche/PSKracker/HEAD/src/xfinity.c --------------------------------------------------------------------------------