You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

kpass-gen

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kpass-gen

kpass is a Python toolkit for generating, ciphering and evaluating passwords with JSON, CSV and YAML export.

0.2.6
pipPyPI
Maintainers
1

🔐 kpass — Smart Password Generator & Evaluator

kpass logo

kpass is a Python toolkit for generating, ciphering and evaluating passwords—designed for educational, testing and automation scenarios.

✨ Features

  • Generate hundreds or thousands of password combinations from:

    • Full name
    • Age
    • Birth date
  • Leet‑speak substitutions like A → 4, E → 3, S → $

  • Strength evaluation based on:

    • Length
    • Digits
    • Special characters
    • Mixed case
    • Numeric sequence patterns
  • Export automatically to .json, .csv or .yaml with a progress bar powered by rich

⚠️ Security Disclaimer

This project does not produce secure passwords for production systems. It uses predictable inputs (names, dates) and should not be used for real authentication.

🎯 Use Cases

  • 🧠 Cybersecurity Awareness Learn why personal info makes weak passwords.

  • 🧰 Pentesting & Wordlist Creation Build custom dictionaries for ethical hacking.

  • 🧪 Automation & Testing Generate dummy passwords for scripts, bots or sandbox environments.

📦 Installation

pip install kpass-gen

Requires Python 3.6+

🚀 Quick Start

1. Generate Passwords

from kpass import generator

# Example: Johnny Silverhand (born 08/07/2000, age 50 in 2077)
generator(
    name="Johnny Silverhand",
    age="50",
    birth_date="08/07/2000",
    file_type="json",         # optional: json, csv, yaml or yml
    file_name="jsilverhand"   # optional: filename without extension
)

2. Apply Leet Cipher

from kpass import apply_ciphers

# Example: Panam Palmer
leet = apply_ciphers("Panam Palmer")
print(leet)  # → "|D4|\\|4/\\/\\ |D41/\\/\\312"

3. Save Custom Password Lists

from kpass import save_to_file

# Example passwords inspired by Cyberpunk characters
passwords = ["Chipp4020!", "AltAccount2077$", "RoughTrade37#"]
scores    = [3, 5, 4]
verdicts  = ["#mean", "#strong", "#good"]

save_to_file(
    passwords,
    scores,
    verdicts,
    file_name="cyberpunk_list",
    file_type="csv"    # outputs cyberpunk_list.csv
)

4. Check Password Strength

from kpass import verify

# returns "#very_strong"
print(verify("R0gueDr1ft!99"))

# returns 6
print(verify("R0gueDr1ft!99", want_verdict=False))

🔧 API Reference

FunctionDescription
generator(name, age, birth_date, file_type, file_name)Generates permutations, evaluates strength, and saves to a file
apply_ciphers(text)Applies leet‑speak substitutions
save_to_file(passwords, scores, verdicts, file_name, file_type)Exports password list + scores + verdicts with a progress bar
verify(password, want_verdict=True)Evaluates strength; returns an int score or str verdict (#good, etc.)
check_sequences(password)Detects ascending/descending numeric sequences
veredict(score)Maps numeric score to verdict string (#weak, #strong, etc.)

✅ Requirements

  • Python 3.6 or higher
  • rich for progress bars

📄 License

MIT License — free to use, modify and share.

Keywords

password

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts