-
Notifications
You must be signed in to change notification settings - Fork 0
Security
CyberGems edited this page Aug 30, 2026
·
1 revision
CyberNotes includes robust security features: master password, auto-lock, privacy shield, and Caps Lock manager.
- Go to Settings → Security
- Enable Master Password
- Enter and confirm your password
- Password is hashed with bcrypt before storage
- bcryptjs (pure JavaScript)
- Salted hashing
- No plaintext storage
When locked:
- Password required to unlock
- Notes are inaccessible
- Timer shows time since lock
Automatically lock after inactivity:
| Setting | Range |
|---|---|
| Timeout | 1 minute to 24 hours |
| Disabled | 0 (auto-lock off) |
- No keyboard/mouse activity detected
- Countdown reaches timeout
- Lock screen appears
- Password required to continue
- Step away from computer
- Prevent unauthorized access
- Shared or public environments
When the app is hidden or minimized:
- Screen shield activates
- Prevents shoulder surfing
- Hides note content from view
| Trigger | Action |
|---|---|
| Minimize | Shield activates |
| Hide to tray | Shield activates |
| Switch to another app | Shield activates |
Monitors Caps Lock state and:
- Auto-off after inactivity
- Countdown timer before turning off
- Sound notifications
| Preset | Description |
|---|---|
| Off | No sound |
| Click | Mechanical click |
| Beep | Cyber-beep |
| Chime | Digital chime |
| Glitch | Glitch blip |
| Scope | Description |
|---|---|
| App | Sound only when CyberNotes focused |
| Global | Sound anytime Caps Lock changes |
- Web Audio API synthesizer
- Zero external files required
- Pure JavaScript audio generation
- SQL.js database stored locally
- Images in local app data
- No cloud transmission
- No server communication
| Data | Location |
|---|---|
| Database | %APPDATA%\CyberNotes\cybernotes.db |
| Images | %APPDATA%\CyberNotes\images\ |
| Settings | SQL.js settings table |
| Password hash | SQL.js settings table |