UnveilPass
UnveilPass plugin for WordPress — SSO, Agent Gateway, 2FA enforcement
by UnveilTech · github.com/unveiltech/unveilpass-wordpress · website
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/unveiltech/unveilpass-wordpress/archive/refs/heads/main.zipUnveilPass for WordPress
Zero-knowledge password manager integration for WordPress.
Free Features
- Password Generator — Dashboard widget with length, character toggles and strength indicator (12 chars max)
- Admin Bar Button — Quick password generation from anywhere in WordPress admin
- REST API —
GET /wp-json/unveilpass/v1/generate?length=12
Pro Features
- Sign in with UnveilPass — OIDC SSO button on wp-login.php with PKCE (S256)
- Auto-create users — optionally create WordPress accounts for new UnveilPass users
- 2FA enforcement — block direct password login for administrators
- Agent Gateway —
unveilpass_get_credential($entry_id)helper for deployment scripts - Security dashboard — admin/editor login history and method tracking
- Extended generator — up to 128 characters
Installation
- Download and upload to
/wp-content/plugins/unveilpass/ - Activate in WordPress admin
- Go to Settings > UnveilPass
Free Setup
No configuration needed. The password generator widget appears on your dashboard automatically.
Pro Setup
- Log in to UnveilPass
- Go to Manager Console > Applications
- Click + New Application
- Set the Redirect URI to:
https://yoursite.com/wp-login.php?unveilpass_callback=1 - Copy the Client ID and Client Secret to the plugin settings
Agent Gateway Usage
$cred = unveilpass_get_credential('your-entry-uuid');
if ($cred) {
$db_user = $cred['username'];
$db_pass = $cred['password'];
}
Requirements
- WordPress 5.6+
- PHP 7.4+
- UnveilPass Pro plan (for SSO, Agent Gateway and 2FA enforcement)
License
MIT License. Copyright 2026 UnveilTech.