mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-05-18 14:24:15 +01:00
* Changes to DE preview site to support managed identity. Changes to infrastructure to use new preview site. * Fix formatting. * Potential fix for code scanning alert no. 56: Server-side request forgery Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Use different secrets for subscription/tenant/client id's. * Revert new id names. * Update Az CLI config. * Update to Node 18 and update security vulnerable dependencies. --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
206 lines
7.0 KiB
TypeScript
206 lines
7.0 KiB
TypeScript
import {
|
||
BackendApi,
|
||
CassandraProxyEndpoints,
|
||
JunoEndpoints,
|
||
MongoProxyEndpoints,
|
||
PortalBackendEndpoints,
|
||
} from "Common/Constants";
|
||
import { configContext } from "ConfigContext";
|
||
import * as Logger from "../Common/Logger";
|
||
|
||
export function validateEndpoint(
|
||
endpointToValidate: string | undefined,
|
||
allowedEndpoints: ReadonlyArray<string>,
|
||
): boolean {
|
||
try {
|
||
return validateEndpointInternal(
|
||
endpointToValidate,
|
||
allowedEndpoints.map((e) => e),
|
||
);
|
||
} catch (reason) {
|
||
Logger.logError(`${endpointToValidate} not allowed`, "validateEndpoint");
|
||
Logger.logError(`${JSON.stringify(reason)}`, "validateEndpoint");
|
||
return false;
|
||
}
|
||
}
|
||
|
||
function validateEndpointInternal(
|
||
endpointToValidate: string | undefined,
|
||
allowedEndpoints: ReadonlyArray<string>,
|
||
): boolean {
|
||
if (endpointToValidate === undefined) {
|
||
return false;
|
||
}
|
||
|
||
const originToValidate: string = new URL(endpointToValidate).origin;
|
||
const allowedOrigins: string[] = allowedEndpoints.map((allowedEndpoint) => new URL(allowedEndpoint).origin) || [];
|
||
const valid = allowedOrigins.indexOf(originToValidate) >= 0;
|
||
|
||
if (!valid) {
|
||
throw new Error(
|
||
`${endpointToValidate} is not an allowed endpoint. Allowed endpoints are ${allowedEndpoints.toString()}`,
|
||
);
|
||
}
|
||
|
||
return valid;
|
||
}
|
||
|
||
export const defaultAllowedArmEndpoints: ReadonlyArray<string> = [
|
||
"https://api-dogfood.resources.windows-int.net/",
|
||
"https://management.azure.com",
|
||
"https://management.usgovcloudapi.net",
|
||
"https://management.chinacloudapi.cn",
|
||
];
|
||
|
||
export const allowedAadEndpoints: ReadonlyArray<string> = [
|
||
"https://login.microsoftonline.com/",
|
||
"https://login.microsoftonline.us/",
|
||
"https://login.partner.microsoftonline.cn/",
|
||
];
|
||
|
||
export const defaultAllowedBackendEndpoints: ReadonlyArray<string> = [
|
||
"https://main.documentdb.ext.azure.com",
|
||
"https://main.documentdb.ext.azure.cn",
|
||
"https://main.documentdb.ext.azure.us",
|
||
"https://main.cosmos.ext.azure",
|
||
"https://localhost:12901",
|
||
"https://localhost:1234",
|
||
];
|
||
|
||
export const PortalBackendIPs: { [key: string]: string[] } = {
|
||
"https://main.documentdb.ext.azure.com": ["104.42.195.92", "40.76.54.131"],
|
||
// DE doesn't talk to prod2 (main2) but it might be added
|
||
//"https://main2.documentdb.ext.azure.com": ["104.42.196.69"],
|
||
"https://main.documentdb.ext.azure.cn": ["139.217.8.252"],
|
||
"https://main.documentdb.ext.azure.us": ["52.244.48.71"],
|
||
// Add ussec and usnat when endpoint address is known:
|
||
//ussec: ["29.26.26.67", "29.26.26.66"],
|
||
//usnat: ["7.28.202.68"],
|
||
};
|
||
|
||
export const PortalBackendOutboundIPs: { [key: string]: string[] } = {
|
||
[PortalBackendEndpoints.Mpac]: ["13.91.105.215", "4.210.172.107"],
|
||
[PortalBackendEndpoints.Prod]: ["13.88.56.148", "40.91.218.243"],
|
||
[PortalBackendEndpoints.Fairfax]: ["52.247.163.6", "52.244.134.181"],
|
||
[PortalBackendEndpoints.Mooncake]: ["163.228.137.6", "143.64.170.142"],
|
||
};
|
||
|
||
export const MongoProxyOutboundIPs: { [key: string]: string[] } = {
|
||
[MongoProxyEndpoints.Mpac]: ["20.245.81.54", "40.118.23.126"],
|
||
[MongoProxyEndpoints.Prod]: ["40.80.152.199", "13.95.130.121"],
|
||
[MongoProxyEndpoints.Fairfax]: ["52.244.176.112", "52.247.148.42"],
|
||
[MongoProxyEndpoints.Mooncake]: ["52.131.240.99", "143.64.61.130"],
|
||
};
|
||
|
||
export const defaultAllowedMongoProxyEndpoints: ReadonlyArray<string> = [
|
||
MongoProxyEndpoints.Development,
|
||
MongoProxyEndpoints.Mpac,
|
||
MongoProxyEndpoints.Prod,
|
||
MongoProxyEndpoints.Fairfax,
|
||
MongoProxyEndpoints.Mooncake,
|
||
];
|
||
|
||
export const allowedMongoProxyEndpoints_ToBeDeprecated: ReadonlyArray<string> = [
|
||
"https://main.documentdb.ext.azure.com",
|
||
"https://main.documentdb.ext.azure.cn",
|
||
"https://main.documentdb.ext.azure.us",
|
||
"https://main.cosmos.ext.azure",
|
||
"https://localhost:12901",
|
||
];
|
||
|
||
export const defaultAllowedCassandraProxyEndpoints: ReadonlyArray<string> = [
|
||
CassandraProxyEndpoints.Development,
|
||
CassandraProxyEndpoints.Mpac,
|
||
CassandraProxyEndpoints.Prod,
|
||
CassandraProxyEndpoints.Fairfax,
|
||
CassandraProxyEndpoints.Mooncake,
|
||
];
|
||
|
||
export const allowedCassandraProxyEndpoints_ToBeDeprecated: ReadonlyArray<string> = [
|
||
"https://main.documentdb.ext.azure.com",
|
||
"https://main.documentdb.ext.azure.cn",
|
||
"https://main.documentdb.ext.azure.us",
|
||
"https://main.cosmos.ext.azure",
|
||
"https://localhost:12901",
|
||
];
|
||
|
||
export const CassandraProxyOutboundIPs: { [key: string]: string[] } = {
|
||
[CassandraProxyEndpoints.Mpac]: ["40.113.96.14", "104.42.11.145"],
|
||
[CassandraProxyEndpoints.Prod]: ["137.117.230.240", "168.61.72.237"],
|
||
[CassandraProxyEndpoints.Fairfax]: ["52.244.50.101", "52.227.165.24"],
|
||
[CassandraProxyEndpoints.Mooncake]: ["40.73.99.146", "143.64.62.47"],
|
||
};
|
||
|
||
export const allowedEmulatorEndpoints: ReadonlyArray<string> = ["https://localhost:8081"];
|
||
|
||
export const allowedMongoBackendEndpoints: ReadonlyArray<string> = ["https://localhost:1234"];
|
||
|
||
export const allowedGraphEndpoints: ReadonlyArray<string> = ["https://graph.microsoft.com"];
|
||
|
||
export const allowedArcadiaEndpoints: ReadonlyArray<string> = ["https://workspaceartifacts.projectarcadia.net"];
|
||
|
||
export const allowedHostedExplorerEndpoints: ReadonlyArray<string> = ["https://cosmos.azure.com/"];
|
||
|
||
export const allowedMsalRedirectEndpoints: ReadonlyArray<string> = ["https://dataexplorer-preview.azurewebsites.net/"];
|
||
|
||
export const allowedJunoOrigins: ReadonlyArray<string> = [
|
||
JunoEndpoints.Test,
|
||
JunoEndpoints.Test2,
|
||
JunoEndpoints.Test3,
|
||
JunoEndpoints.Prod,
|
||
JunoEndpoints.Stage,
|
||
"https://localhost",
|
||
];
|
||
|
||
export const allowedNotebookServerUrls: ReadonlyArray<string> = [];
|
||
|
||
//
|
||
// Temporary function to determine if a portal backend API is supported by the
|
||
// new backend in this environment.
|
||
//
|
||
// TODO: Remove this function once new backend migration is completed for all environments.
|
||
//
|
||
export function useNewPortalBackendEndpoint(backendApi: string): boolean {
|
||
// This maps backend APIs to the environments supported by the new backend.
|
||
const newBackendApiEnvironmentMap: { [key: string]: string[] } = {
|
||
[BackendApi.GenerateToken]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
],
|
||
[BackendApi.PortalSettings]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
],
|
||
[BackendApi.AccountRestrictions]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
],
|
||
[BackendApi.RuntimeProxy]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
],
|
||
[BackendApi.DisallowedLocations]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
PortalBackendEndpoints.Fairfax,
|
||
PortalBackendEndpoints.Mooncake,
|
||
],
|
||
[BackendApi.SampleData]: [
|
||
PortalBackendEndpoints.Development,
|
||
PortalBackendEndpoints.Mpac,
|
||
PortalBackendEndpoints.Prod,
|
||
],
|
||
};
|
||
|
||
if (!newBackendApiEnvironmentMap[backendApi] || !configContext.PORTAL_BACKEND_ENDPOINT) {
|
||
return false;
|
||
}
|
||
|
||
return newBackendApiEnvironmentMap[backendApi].includes(configContext.PORTAL_BACKEND_ENDPOINT);
|
||
}
|