Skip to content

Commit 2daa7d7

Browse files
authored
Merge pull request #36939 from dotnet/main
Merge to Live
2 parents 299c6db + bdd837c commit 2daa7d7

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

aspnetcore/signalr/security.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
22
title: Security considerations in ASP.NET Core SignalR
3+
ai-usage: ai-assisted
34
author: wadepickett
45
description: Learn about security in ASP.NET Core SignalR.
56
monikerRange: '>= aspnetcore-2.1'
67
ms.author: wpickett
78
ms.custom: mvc
8-
ms.date: 02/20/2024
9+
ms.date: 03/31/2026
910
uid: signalr/security
1011
---
12+
1113
# Security considerations in ASP.NET Core SignalR
1214

1315
By [Andrew Stanton-Nurse](https://twitter.com/anurse)
@@ -39,6 +41,44 @@ For example, the following highlighted CORS policy allows a SignalR browser clie
3941

4042
In the previous example, the CORS policy is customized to allow specific origins, methods, and credentials. For more information on customizing CORS policies and middleware in ASP.NET Core, see [CORS middleware: CORS with named policy and middleware](xref:security/cors#cors-with-named-policy-and-middleware).
4143

44+
### Apply a CORS policy to SignalR hub endpoints
45+
46+
Instead of applying a CORS policy globally with the `UseCors` middleware, you can apply CORS specifically to SignalR hub endpoints. This approach allows different CORS policies for different parts of the app.
47+
48+
There are two ways to apply a CORS policy to SignalR hubs: chaining `RequireCors` on the endpoint mapping, or adding the `[EnableCors]` attribute to the Hub class. Both approaches require a named CORS policy to be registered in the service configuration. The following example defines a policy named `"SignalRPolicy"`:
49+
50+
```csharp
51+
builder.Services.AddCors(options =>
52+
{
53+
options.AddPolicy("SignalRPolicy", policy =>
54+
{
55+
policy.WithOrigins("https://example.com")
56+
.AllowAnyHeader()
57+
.WithMethods("GET", "POST")
58+
.AllowCredentials();
59+
});
60+
});
61+
```
62+
63+
**Apply the CORS policy on the hub endpoint mapping** by chaining <xref:Microsoft.AspNetCore.Builder.CorsEndpointConventionBuilderExtensions.RequireCors%2A> on the `MapHub` call:
64+
65+
```csharp
66+
app.MapHub<ChatHub>("/chatHub")
67+
.RequireCors("SignalRPolicy");
68+
```
69+
70+
**Apply the CORS policy on the Hub class** by adding the [`[EnableCors]`](xref:Microsoft.AspNetCore.Cors.EnableCorsAttribute) attribute:
71+
72+
```csharp
73+
[EnableCors("SignalRPolicy")]
74+
public class ChatHub : Hub
75+
{
76+
// ...
77+
}
78+
```
79+
80+
For more information on enabling CORS with endpoint routing, see [Enable CORS with endpoint routing](xref:security/cors#enable-cors-with-endpoint-routing).
81+
4282
## WebSocket Origin Restriction
4383

4484
The protections provided by CORS don't apply to WebSockets. For origin restriction on WebSockets, read [WebSockets origin restriction](xref:fundamentals/websockets#websocket-origin-restriction).

0 commit comments

Comments
 (0)