lsh-framework 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -512,6 +512,11 @@ lsh -s script.sh
|
|
|
512
512
|
|
|
513
513
|
## Security
|
|
514
514
|
|
|
515
|
+
> **⚠️ CRITICAL: Read [SECURITY.md](SECURITY.md) for complete security guidelines**
|
|
516
|
+
>
|
|
517
|
+
> The security of your secrets depends entirely on how you store your `LSH_SECRETS_KEY`.
|
|
518
|
+
> **Never store it in your project's `.env` file** - use your shell profile instead.
|
|
519
|
+
|
|
515
520
|
### Encryption
|
|
516
521
|
|
|
517
522
|
- **Algorithm**: AES-256-CBC
|
|
@@ -522,16 +527,18 @@ lsh -s script.sh
|
|
|
522
527
|
### Best Practices
|
|
523
528
|
|
|
524
529
|
**✅ DO:**
|
|
525
|
-
-
|
|
526
|
-
-
|
|
527
|
-
-
|
|
530
|
+
- Store `LSH_SECRETS_KEY` in your shell profile (`~/.zshrc`, `~/.bashrc`)
|
|
531
|
+
- Generate unique keys per project/team
|
|
532
|
+
- Share keys securely via 1Password/LastPass/Bitwarden
|
|
533
|
+
- Use different keys for dev/staging/production environments
|
|
528
534
|
- Rotate keys periodically
|
|
529
|
-
- Keep backups of your
|
|
535
|
+
- Keep encrypted backups of your encryption key
|
|
530
536
|
|
|
531
537
|
**❌ DON'T:**
|
|
538
|
+
- Store `LSH_SECRETS_KEY` in your project's `.env` file
|
|
532
539
|
- Commit `LSH_SECRETS_KEY` to git
|
|
533
540
|
- Share keys in plain text (Slack, email, etc.)
|
|
534
|
-
- Reuse keys across projects
|
|
541
|
+
- Reuse keys across different teams/projects
|
|
535
542
|
- Store production secrets in dev environment
|
|
536
543
|
|
|
537
544
|
### Command Validation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lsh-framework",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "Simple, cross-platform encrypted secrets manager with automatic sync, IPFS audit logs, and multi-environment support. Just run lsh sync and start managing your secrets.",
|
|
5
5
|
"main": "dist/app.js",
|
|
6
6
|
"bin": {
|