You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"displayName": "Ensure authentication is set to 'Enabled' for _ARG_0_",
7
+
"description": "App Service authentication can prevent anonymous HTTP requests from reaching an app, or authenticate those with tokens before they reach the app. If an anonymous request is received from a browser, App Service will redirect to a login page. To handle the login process, a choice from a set of identity providers can be made, or a custom authentication mechanism can be implemented.",
8
+
"rationale": "By enabling authentication, every incoming HTTP request passes through it before being handled by the application code. It also handles authentication of users with the specified provider (Entra ID, Facebook, Google, Microsoft Account, and Twitter), validation, storage and refreshing of tokens, managing the authenticated sessions, and injecting identity information into request headers.",
9
+
"impact": "This is only required for apps that require authentication. Enabling it on a site like a marketing or support website will prevent unauthenticated access, which would be undesirable.<br/><br/>Adding an authentication requirement will increase costs and require additional security components to facilitate the authentication.",
10
+
"remediation": {
11
+
"text": "
12
+
#### Remediate from Azure Portal
13
+
1. Go to App Services.
14
+
2. Click the name of an app.
15
+
3. Under Settings, click Authentication.
16
+
4. If an identity provider is not configured:
17
+
1. Click Add identity provider.
18
+
2. Provide appropriate configuration for an identity provider and click Add.
19
+
5. If App Service authentication is set to Disabled:
20
+
1. Click Enable authentication.
21
+
6. Repeat steps 1-5 for each app requiring remediation.
"displayName": "Ensure all traffic is routed through the virtual network",
7
+
"description": "Enable vnetRouteAllEnabled to ensure all outbound traffic is routed through the integrated virtual network.<br/><br/>This recommendation should be applied after integrating an App Service app with a virtual network.",
8
+
"rationale": "Routing all outbound traffic through the virtual network enhances security.",
9
+
"impact": "Additional configuration may be required to ensure that traffic is routed properly.",
10
+
"remediation": {
11
+
"text": "
12
+
#### Remediate from Azure Portal
13
+
1. Go to App Services.
14
+
2. Click the name of an app.
15
+
3. Under Settings, click Networking.
16
+
4. Under Outbound traffic configuration, next to Virtual network integration, click the virtual network and subnet name.
17
+
5. Under Application routing, check the box next to Outbound internet traffic.
18
+
6. Click Apply.
19
+
7. Repeat steps 1-6 for each app requiring remediation.
0 commit comments