Skip to content

T0w3ntum/PWTools

 
 

Repository files navigation

PWTools

A small collection of tools designed to increase password cracking success.

##Combination-Builder Merge multiple wordlists to create every combination of the words in the wordlists.
Usage is: ./combination-builder.py <input wordlist 2>

./combination-builder.py sample\ wordlists/speeds.txt sample\ wordlists/colors.txt sample\ wordlists/cars.txt
FastRedFord
FastRedChevy
FastRedToyota
FastBlueFord
FastBlueChevy
FastBlueToyota
FastWhiteFord
FastWhiteChevy
...

##DictPhrase-Builder
Using a single wordlist, match each word with every other word in the file (x) amount of times.
Usage is: ./dictphrase-builder.py

./dictphrase-builder.py sample\ wordlists/listall.txt 3
FastFastFast
FastFastSlow
FastFastGreen
FastFastBlue
FastFastRed
FastFastFord
FastFastChevy
...

##Phrase Builder
Using an imported song/movie script/book/etc, generate phrases from the input (x) long.
Usage is: ./phrase-builder.py

./phrase-builder.py sample\ wordlists/starwarsv.txt starwarsv-out.txt 4
grep force starwarsv-out.txt
disturbanceintheforce
intheforcevader
theforcevaderi
forcevaderihave
himemperortheforce
emperortheforceis
theforceisstrong
...

##Mask-Builder
Using an imported wordlist(cracked passwords), generate the password masks and sort by most common.
Usage is: ./mask-builder.py

./mask-builder.py sample\ wordlists/passwords.txt passwords-mask.txt
Outputting Data
Total time was 0.000359058380127
Speed was 50131.123506 words per second

head -n 5 passwords-mask.txt
?u?l?l?l?l?l?d?d?s,3 Occurances,16.6666666667%
?u?l?l?l?l?d?d?d?s,3 Occurances,16.6666666667%
?u?l?l?l?l?l?l?l?d?s,3 Occurances,16.6666666667%
?u?l?l?l?d?d?d?s,2 Occurances,11.1111111111%
?u?l?l?l?l?l?d?s,2 Occurances,11.1111111111%

##NTLMmyLM.py
Using a output potfile list from LM Cracked hashes (which lose case-sensitivity) this script will generate all possibilities to be fed into STDIN oclHashcat Password Dump Format.

python NTLMmyLM.py lm-cracked.txt
winter2017
winteR2017
wintEr2017
wintER2017
winTer2017
winTeR2017
winTEr2017

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 84.1%
  • Shell 15.9%