Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pypal

Python port of Pipal for password analytics

This is currently a library with no front end, mainly for use with CrackQ, but it can be imported into any project to generate a HTML report of a password dump analysis.

Uses fuzzy string matching and levenshtine algorithm to identify base words.

Install

git clone https://github.com/f0cker/pypal
cd pypal
pip3 install .

Usage

import pypal
from pathlib import Path

report = pypal.Report(Path('/path/to/cracked/passwords.txt'))
status = report.report_gen()

The above will generate a html report at /path/to/cracked/passwords_report.html

Features/Metrics:

  • Top 10 cracked passwords
  • Top x passwords by length
  • Top x base dictionary words
  • Top x base words by city
  • Top x base words by country
  • Top x base words by name
  • Geomap using location coordinates mapped from matched basewords by location
  • count of passwords based on a country/place
  • top 10 most popular words/name
  • show users with shared passwords
  • show users with blank passwords
  • how many passwords are non-compliant with policy
  • domain admins etc

Todo:

  • password complexity (character sets)
  • Add additional AD review checks by processing NTDS.dit
  • crack time
  • count based on a name
  • based on multiple words
  • based on common password pattern
  • top 10 masks
  • top 10 masks by position in password
  • top 10 passwords
  • top 10 patterns?
  • top 10 used numbers
  • top 10 end numbers 1 - 6
  • top 10 most common numerical patterns
  • Months/Year/Day
  • remove vega editor link

About

Python port of Pipal for password analytics

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages