Admin Settings
This section covers administrative tasks in OpenSCM — user management, roles, server settings, and maintenance. Admin functions are only accessible to users with the Administrator role.
User Management
Navigate to Settings > Users to manage user accounts.
User Roles
OpenSCM uses a four-tier role model. Each role inherits the permissions of the roles below it.
| Role | Permissions |
|---|---|
| Administrator | Full access — user management, all editor/runner/viewer functions |
| Editor | Create and manage tests, policies, system groups |
| Runner | Execute policy scans, save reports |
| Viewer | Read-only access to dashboard, systems, policies, and reports |
Creating a User
- Navigate to Settings > Users
- Click New User
- Fill in the required fields:
| Field | Description |
|---|---|
| Display Name | Full name shown in the UI and reports |
| User email address | |
| Username | Login username |
| Password | Initial password — minimum 8 characters |
| Role | Access level assigned to the user |
- Click Create Account
The user can log in immediately with the credentials you set. Advise them to change their password on first login.
Password Policy
Passwords must be at least 8 characters. There is currently no forced password change on first login — remind new users to change their password immediately.
Editing a User
Click the Edit icon next to any user to update their:
- Display name
- Email address
- Role assignment
Role Changes
Only administrators can change a user's role. Non-admin users can edit their own display name and email but cannot change their own role.
Changing a Password
Each user can change their own password from their profile page:
- Click the username in the top-right navigation bar
- Select Profile
- Scroll to Security: Change Password
- Enter and confirm the new password
- Click Update Security Credentials
Administrators can also change any user's password from the user edit page.
Deleting a User
Click the Delete icon next to a user to remove their account.
Deletion Notes
- You cannot delete your own account
- The default
adminaccount (ID 1) cannot be deleted - Deletion is immediate and permanent — the user loses access instantly
Default Admin Account
OpenSCM ships with a default administrator account:
| Field | Value |
|---|---|
| Username | admin |
| Password | admin |
Change Immediately
The default credentials must be changed immediately after installation. Anyone with network access to the dashboard can log in with these credentials until they are changed.
Go to Profile → Security: Change Password after your first login.
Role Assignment Guidelines
Assign the minimum role necessary for each user's responsibilities:
| User Type | Recommended Role |
|---|---|
| Security engineer managing tests and policies | Editor |
| Operations team running scans | Runner |
| Auditor reviewing compliance results | Viewer |
| Security administrator managing the platform | Administrator |
Principle of Least Privilege
Avoid assigning Administrator or Editor roles to users who only need to view reports. Use the Viewer role for auditors and stakeholders who need read-only access to compliance data.
Server Settings
Navigate to Settings > Settings to configure server-wide options.
General
| Setting | Description | Default |
|---|---|---|
| Offline Threshold | Seconds without activity before a system is marked offline and grayed out | 600 |
Compliance
| Setting | Description | Default |
|---|---|---|
| SAT Threshold | Minimum compliance percentage to display green | 80% |
| MARGINAL Threshold | Minimum compliance percentage to display yellow | 60% |
Scores below the MARGINAL threshold are automatically displayed in red (UNSAT). These thresholds affect compliance colors across the dashboard, policies, and reports.
Threshold Guidelines
- DISA STIG environments typically require 100% — set SAT to
100 - CIS Benchmark environments typically target 80–90%
- MARGINAL threshold must always be lower than SAT threshold
Session Management
OpenSCM sessions expire after 8 hours of inactivity. Users are automatically redirected to the login page when their session expires.
Sessions are secured with signed cookies derived from the server's Ed25519 private key. Restarting the server does not invalidate existing sessions.
Server Maintenance
Restarting the Server
Configuration changes require a service restart to take effect.
Viewing Server Logs
Database Location
The SQLite database is stored at a fixed location:
- Linux:
/var/lib/openscm/scm.db - Windows:
C:\ProgramData\OpenSCM\Server\scm.db
Database Backup
Back up the database file regularly to prevent data loss:
Key Backup
Back up your server keypair alongside the database. If the server keys are lost all registered agents will fail signature verification and need to re-register.
Protect Your Keys
Server key files should be stored securely with restricted permissions. Never commit key files to version control or store them in publicly accessible locations.
Version Update Notifications
OpenSCM checks for new releases automatically every hour by querying the GitHub releases API. When a newer version is available, all Administrator users receive an in-app notification with the new version number and a link to the download page.
- Notifications are deduplicated — each administrator is notified only once per version
- The check runs silently in the background and does not affect server performance
- No data is sent to GitHub — only a public API read request is made