Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
The Vault by Focused Hunts — Privacy-first password manager with local storage and bring-your-own-cloud sync across Google Drive, Microsoft OneDrive, and Dropbox. Your Secrets. Your Control. | Kitploit
Tools/GitLabGitLab/focused.hunts/the.vault
Authentication & AuthorizationPassword CrackingEncryption/Decryption ToolsCloud SecurityMobile SecurityHardware Security
GitLabfocused.hunts/the.vault

The Vault by Focused Hunts

Privacy-first password manager with local storage and bring-your-own-cloud sync across Google Drive, Microsoft OneDrive, and Dropbox. Your Secrets. Your Control.

View Repository
2 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

The Vault

The Vault

Your Secrets. Your Control.

Most password managers want you to trust a company you don't know with your sensitive data. They control the servers and the keys, and you have to hope nothing goes wrong. The Vault does things differently. Your encrypted vault files stay on cloud storage you already use and trust, like Google Drive, OneDrive, Dropbox, or soon, your own server.

Focused Hunts makes the app, but we never see your data, don't run servers that store it, and have no mechanism to access it. There's nothing for us to breach because we don't hold your information.

The Vault is free for personal use and always will be this way. You get strong encryption, multi-cloud sync, YubiKey support, TOTP, autofill, and support for multiple devices, all without subscriptions, accounts, or usage limits. Consumer users aren't the product, and we aren't funding this through ads or data collection.

Our business model is straightforward: for-profit organizations that need Microsoft SharePoint support, centralized audit trails, or SSO pay for those features. The consumer app is and will always be free; that's why we built this in the first place.

Google Play • Microsoft Marketplace • Focused Hunts


What is This Repo?

This is the source-available release of The Vault, published under the Business Source License 1.1. Each tagged release corresponds to a version shipped to the Google Play Store and/or Microsoft Store.

You are free to:

  • Read and study the full source code
  • Build from source for personal, non-commercial use
  • Audit the security and cryptographic implementation
  • Fork for personal use

Commercial use requires a separate license: contact Focused Hunts for details.

Features

  • AES-256-GCM encryption with Argon2id key derivation (OWASP-compliant)
  • Bring Your Own Cloud sync from Google Drive, OneDrive, Dropbox, and Nextcloud (coming soon)
  • YubiKey hardware security key support (HMAC-SHA1, FIDO2, OATH)
  • Multi-vault support with per-vault encryption
  • Secure sharing via cloud-native permissions
  • Browser extensions for Chrome, Firefox, and Edge (autofill)
  • Windows Hello / Android biometric unlock
  • TOTP authenticator built in (software + hardware YubiKey)
  • Password generator with 3 modes (simple, passphrase, advanced)
  • Zero infrastructure as we have no infrastructure in this app's architecture

Tech Stack

Building from Source

See BUILDING.md for prerequisites, missing files you need to supply (OAuth credentials, vendored packages), and build commands.

Quick start:

root@kitploit:~
flutter pub get
flutter analyze
flutter test
flutter build apk --release          # Android
flutter build windows --release       # Windows

Security

The Vault's cryptographic implementation is fully transparent in this repo. Key files to audit:

Found a vulnerability? See SECURITY.md for responsible disclosure.

License

This project is licensed under the Business Source License 1.1.

  • Non-commercial use: Permitted
  • Commercial use: Requires separate license from Focused Hunts LLC
  • Change date: 4 years after each release → GPLv2+

Built by Focused Hunts

Download Tool
LayerTechnology
FrameworkFlutter (Dart)
State ManagementRiverpod
DatabaseDrift (SQLite)
EncryptionAES-256-GCM, Argon2id (native FFI)
Android NativeKotlin (YubiKey, Passkeys, Autofill)
Windows NativeC++ (WebAuthn COM, Named Pipes, TPM)
Browser ExtensionsTypeScript (Chrome MV3, Firefox, Edge)
FilePurpose
lib/core/security/crypto_service.dartAES-256-GCM encrypt/decrypt
lib/core/security/key_derivation.dartArgon2id + HKDF-SHA256
lib/core/services/yubikey_service.dartYubiKey challenge-response
lib/features/auth/Authentication state machine
lib/features/sync/Multi-cloud sync engine