Azure Subscription Key
#
Description#
GeneralDocumentation: https://docs.microsoft.com/en-us/azure/
Summary: Azure is a cloud computing service created by Microsoft.
Multiple APIs are available through Azure (Bing search, translation, speech recognition, etc), they all use the same authentication method, a token passed in a header namedOcp-Apim-Subscription-Key
.IPs allowlist: See API Management policies.
Scopes: Keys are specific to an API.
#
Revoke the secretIt is possible to rotate keys from the Azure portal, PowerShell and Azure CLI, see Manually rotate access keys.
#
Check for suspicious activityAzure gives access to detailed logs, see Azure platform logs.
Azure subscription key
#
Details for Family: Api
Category: Cloud Provider
Company: Microsoft
High recall: False
Validity check available: False
Minimum number of matches: 1
Occurrences found for one million commits: 18.43
Prefixed: False
PreValidators:
- type: FilenameBanlistPreValidator banlist_extensions: [] banlist_filenames: [] check_binaries: false include_default_banlist_extensions: true ban_markup: true- type: ContentWhitelistPreValidator patterns: - subscription[-_]?key- type: ContentWhitelistPreValidator patterns: - \bbing\b - microsoft - azure
#
Examples- text: | "baseuri": "https://api.bing.microsoft.com/v7.0/search", "headers": { "Ocp-Apim-Subscription-Key": "bf7ceb0247494d5ea601f15dc63bcaff" }, apikey: "bf7ceb0247494d5ea601f15dc63bcaff"- text: | `https://api.bing.microsoft.com/v7.0/Suggestions?q=` + value, headers: { "Ocp-Apim-Subscription-Key": "775986a0c92a44b996051a3d62f337ff" } apikey: "775986a0c92a44b996051a3d62f337ff"- text: | $GLOBALS["subscription_key"] = "66eae5acb8594216b5f07768540e93ff"; $request = new Http_Request2('https://api.bing.microsoft.com/v7.0/search'); apikey: "66eae5acb8594216b5f07768540e93ff"