@@ -6,6 +6,7 @@ We currently support the following versions with security updates:
6
6
7
7
| Version | Supported |
8
8
| ------- | ------------------ |
9
+ | 1.1.x | :white_check_mark : |
9
10
| 1.0.x | :white_check_mark : |
10
11
11
12
## Reporting a Vulnerability
@@ -42,12 +43,25 @@ This information will help us triage your report more quickly.
42
43
- Secure communication protocols are used for data in transit
43
44
- Access controls are implemented to protect sensitive information
44
45
- Regular backups are performed with encryption
46
+ - RSA keys are stored with proper file permissions (0600 for private keys)
47
+ - AES keys are stored securely in binary format
48
+ - All encryption keys are stored in a dedicated ` keys ` directory
49
+
50
+ ### Key Management
51
+ - RSA key pairs are generated with 2048-bit minimum key size
52
+ - Private keys are stored with restricted permissions (0600)
53
+ - Public keys are stored with read-only permissions (0644)
54
+ - Keys are stored in the project's ` keys ` directory
55
+ - Automatic key generation with secure random number generation
56
+ - Key files are stored in PEM format for RSA keys
57
+ - Cross-platform key storage compatibility
45
58
46
59
### Access Control
47
60
- Principle of least privilege is followed
48
61
- Multi-factor authentication is required for sensitive operations
49
62
- Regular access reviews are conducted
50
63
- Session management and timeout policies are enforced
64
+ - File system permissions are properly set for key storage
51
65
52
66
## Security Updates
53
67
@@ -69,6 +83,10 @@ We recommend following these security best practices:
69
83
3 . Enable two-factor authentication when available
70
84
4 . Regularly review access logs and permissions
71
85
5 . Report any suspicious activity immediately
86
+ 6 . Keep your encryption keys secure and backed up
87
+ 7 . Use the latest version of CryptoLens
88
+ 8 . Regularly rotate encryption keys
89
+ 9 . Monitor the ` keys ` directory for unauthorized changes
72
90
73
91
## Contact
74
92
0 commit comments