openwall/john

John the Ripper jumbo - advanced offline password cracker, which supports hundreds of hash and cipher types, and runs on many operating systems, CPUs, GPUs,...

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 4 minutes ago
Added to GitGenius on September 4th, 2026
Created on December 16th, 2011
Open Issues & Pull Requests: 514 (+0)
GitHub issues: Enabled
Number of forks: 2,550
Total Stargazers: 13,607 (+1)
Total Subscribers: 300 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 1.6 hours
Mean response time: 45.2 days
90th percentile: 10.2 days
Tracked items: 353

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 41% of open issues come from outside the core team, a mix of external reports and the maintainers' own roadmap. Only 6% of issues opened in the past year have been closed. Three people close 87% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 111
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 1,159 days
Stale 30+ days: 104
Stale 90+ days: 97

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • enhancement (118)
  • bug (79)
  • invalid (42)
  • portability (39)
  • maintenance/cleanup (37)
  • question (36)
  • RFC / discussion (28)
  • notes/external issues (23)

Most active issues this week

Detailed Description

John the Ripper is an offline password cracker that supports hundreds of hash and cipher types and runs across many operating systems and hardware platforms including CPUs, GPUs, and FPGAs.

The tool addresses the need to detect weak passwords and verify password security by attempting to crack hashes through multiple attack modes. It works by accepting password files and applying configurable cracking strategies, including dictionary attacks with word mangling rules, brute force approaches, and incremental modes. Cracked passwords are saved to a pot file to avoid redundant work across sessions, and the tool can save and restore its state to permit recovery from interruptions.

The jumbo version suits security professionals and system administrators who need to audit password strength across Unix, macOS, Windows, and other platforms. It is particularly valuable when you need support for a wide variety of hash types beyond standard crypt formats, including Kerberos, Windows LM hashes, and hundreds of additional cipher types. The jumbo variant prioritizes breadth of functionality over maturity, making it appropriate when you need to handle unusual or legacy hash formats but should expect that some code paths may contain bugs. The tool supports acceleration through multiple CPUs, GPU compute via OpenCL, and SIMD instructions, allowing you to scale cracking performance to available hardware.

The project accepts community contributions through pull requests with relatively low quality barriers, which has resulted in extensive functionality being added beyond the core release. Automated testing has been introduced for contributions, indicating a shift toward more rigorous validation. The codebase is written primarily in C with assembly language optimizations, reflecting its focus on performance-critical password cracking operations.