| Previous | Next |
| STATUS_SPACES_DRIVE_LOST_DATA | STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED |
STATUS_SECCORE_INVALID_COMMAND
The command is not supported by the security core
STATUS_SECCORE_INVALID_COMMAND means a request reached the security-core interface, but its command identifier was not recognized. The caller may be using the wrong protocol version, an unsupported operation code, or a malformed request header.
Investigation steps
- Verify the command number against the interface version negotiated with the target.
- Check structure size, packing, byte order, and reserved fields before dispatch.
- Confirm that client and server components come from compatible builds.
- Do not repeatedly send the same unknown command; fail closed and record the request metadata.
Security consideration
Because the target is a security boundary, treat unexpected command values as potentially hostile input. Validate the complete request before accessing payload fields, rate-limit repeated invalid commands, and avoid returning internal dispatch details to an untrusted caller.
References
Looking for a different code? Search another status or error code.
