Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

kwallet-cli

Command-line tool for reading KWallet files.

Usage

# Read wallet (prompts for password)
kwallet-cli ~/.local/share/kwalletd/kdewallet.kwl

# Provide password via argument
kwallet-cli wallet.kwl -p mypassword

# Export as JSON
kwallet-cli wallet.kwl --json

# Migrate to Secret Service
kwallet-cli wallet.kwl --migrate

Output

Normal mode shows entries organized by folder:

📁 Passwords:
   🔑 mysite (password): secret123
   📋 github (map):
      username = user
      token = ghp_xxx
   📄 cert (stream): 2048 bytes

JSON mode outputs structured data:

{
  "Passwords": {
    "mysite": {
      "type": "password",
      "value": "secret123"
    }
  }
}