Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/internal/protocols/ssf/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Shared Signals Framework (SSF) Implementation

A standards-based implementation of the [OpenID Shared Signals Framework](https://openid.net/specs/openid-sse-framework-1_0.html) for real-time security event sharing between identity providers and relying parties.
A standards-based implementation of the [OpenID Shared Signals Framework](https://openid.net/specs/openid-sharedsignals-framework-1_0.html) for real-time security event sharing between identity providers and relying parties.

## Overview

Expand Down Expand Up @@ -342,7 +342,7 @@ curl -H "X-SSF-Session: $SESSION_ID" \
## Specifications

- [RFC 8417 - Security Event Token (SET)](https://datatracker.ietf.org/doc/html/rfc8417)
- [OpenID Shared Signals Framework 1.0](https://openid.net/specs/openid-sse-framework-1_0.html)
- [OpenID Shared Signals Framework 1.0](https://openid.net/specs/openid-sharedsignals-framework-1_0.html)
- [CAEP - Continuous Access Evaluation Profile](https://openid.net/specs/openid-caep-1_0.html)
- [RISC - Risk Incident Sharing and Coordination](https://openid.net/specs/openid-risc-1_0.html)

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const SPEC_GROUPS: SpecGroupItem[] = [
{ label: 'RFC 8417', url: 'https://datatracker.ietf.org/doc/html/rfc8417', tone: 'rfc' },
{ label: 'CAEP 1.0', url: 'https://openid.net/specs/openid-caep-1_0.html', tone: 'spec' },
{ label: 'RISC 1.0', url: 'https://openid.net/specs/openid-risc-profile-1_0.html', tone: 'spec' },
{ label: 'SSF 1.0', url: 'https://openid.net/specs/openid-sse-framework-1_0.html', tone: 'spec' },
{ label: 'SSF 1.0', url: 'https://openid.net/specs/openid-sharedsignals-framework-1_0.html', tone: 'spec' },
],
},
]
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/SSFSandbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export function SSFSandbox() {
<span className="text-surface-600">SET</span>
</a>
<a
href="https://openid.net/specs/openid-sse-framework-1_0.html"
href="https://openid.net/specs/openid-sharedsignals-framework-1_0.html"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-1.5 text-surface-400 hover:text-amber-400 transition-colors group"
Expand Down
Loading