├── .github └── workflows │ ├── build.yml │ ├── sijomc-sonarscan.yml │ └── sonarqube.yml ├── LICENSE ├── README.md ├── cgi-bin ├── change_ad.cgi └── password-dog.cgi ├── docs ├── defcon_slides_with_text_use_slideshow_mode.odp ├── reversing_hashcat_thesis.docx └── total_accuracy.png ├── filter ├── LICENSE ├── checkpw_cli.py ├── checkpw_http.py ├── ignis-1M.txt ├── mkbloom.py ├── password-dog.service ├── pwchecker.py ├── rockyou_masks_10tothe20.masks ├── rulechecker.py ├── rulegen.py ├── rules.txt ├── start_http.sh └── tests.sh ├── html ├── clean_30k.js ├── clean_30k.txt ├── genpw.css ├── genpw.html ├── genpw.js ├── index.html ├── scorepw.js └── txt2js.sh ├── install.sh └── sonar-project.properties /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/sijomc-sonarscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/.github/workflows/sijomc-sonarscan.yml -------------------------------------------------------------------------------- /.github/workflows/sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/.github/workflows/sonarqube.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/README.md -------------------------------------------------------------------------------- /cgi-bin/change_ad.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/cgi-bin/change_ad.cgi -------------------------------------------------------------------------------- /cgi-bin/password-dog.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/cgi-bin/password-dog.cgi -------------------------------------------------------------------------------- /docs/defcon_slides_with_text_use_slideshow_mode.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/docs/defcon_slides_with_text_use_slideshow_mode.odp -------------------------------------------------------------------------------- /docs/reversing_hashcat_thesis.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/docs/reversing_hashcat_thesis.docx -------------------------------------------------------------------------------- /docs/total_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/docs/total_accuracy.png -------------------------------------------------------------------------------- /filter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/LICENSE -------------------------------------------------------------------------------- /filter/checkpw_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/checkpw_cli.py -------------------------------------------------------------------------------- /filter/checkpw_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/checkpw_http.py -------------------------------------------------------------------------------- /filter/ignis-1M.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/ignis-1M.txt -------------------------------------------------------------------------------- /filter/mkbloom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/mkbloom.py -------------------------------------------------------------------------------- /filter/password-dog.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/password-dog.service -------------------------------------------------------------------------------- /filter/pwchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/pwchecker.py -------------------------------------------------------------------------------- /filter/rockyou_masks_10tothe20.masks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/rockyou_masks_10tothe20.masks -------------------------------------------------------------------------------- /filter/rulechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/rulechecker.py -------------------------------------------------------------------------------- /filter/rulegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/rulegen.py -------------------------------------------------------------------------------- /filter/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/rules.txt -------------------------------------------------------------------------------- /filter/start_http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/start_http.sh -------------------------------------------------------------------------------- /filter/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/filter/tests.sh -------------------------------------------------------------------------------- /html/clean_30k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/clean_30k.js -------------------------------------------------------------------------------- /html/clean_30k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/clean_30k.txt -------------------------------------------------------------------------------- /html/genpw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/genpw.css -------------------------------------------------------------------------------- /html/genpw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/genpw.html -------------------------------------------------------------------------------- /html/genpw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/genpw.js -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/index.html -------------------------------------------------------------------------------- /html/scorepw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/scorepw.js -------------------------------------------------------------------------------- /html/txt2js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/html/txt2js.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensei-hacker/password-dog/HEAD/install.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=PasswordDog 2 | --------------------------------------------------------------------------------