How to identify URI and SAS parameters in Azure


Identifying and understanding the components of a URI (Uniform Resource Identifier) with a Shared Access Signature (SAS) in Azure is essential for working with secure access to Azure Storage resources.

Here's how you can identify and interpret the URI and SAS parameters.

Structure of a SAS URI

A SAS URI typically includes:

1. Base URI

The resource's URI in Azure Storage (e.g., a blob, container, file, queue, or table).

2. SAS Token

The query string that contains the parameters defining the access permissions, expiration time, and more.

Example SAS URI:

Components of a SAS URI

Base URI

Identifies the resource being accessed.

Example

https://<StorageAccountName>.blob.core.windows.net/<ContainerName>/<BlobName>

Query String (SAS Token)

Starts with a ? and includes multiple parameters separated by &.

Key SAS Parameters

ParameterDescription
SvStorage Service Version: Specifies the API version used to generate the SAS.
SsServices: Specifies the storage services accessible (e.g., b for blob).
SrtResource Types: Specifies the accessible resource types (s, c, o).
SpPermissions: Specifies the allowed permissions (e.g., r, w, d).
SeExpiry Time: Specifies when the SAS token expires (in UTC).
StStart Time: Specifies when the SAS token becomes valid (in UTC).
SprProtocols: Specifies allowed protocols (https or https,http).
SigSignature: A cryptographic signature generated using the account key.
SipIP Range: Restricts access to specific IP addresses or ranges (optional).
SrResource: Specifies the type of resource (b for blob, c for container).
skoid, sktidAzure AD Parameters: For User Delegation SAS, these identify the Azure AD object.
SksSigned Scope: Scope of access for User Delegation SAS.
  

Examples

Blob SAS Example

Base URI

https://myaccount.blob.core.windows.net/mycontainer/myblob.txt

SAS Parameters

  • sv=2021-12-02: API version.

  • sr=b: Resource type is a blob.

  • sp=r: Permission is read.

  • se=2024-12-01T23:59:59Z: Expires on Dec 1, 2024, at 11:59 PM UTC.

  • st=2024-11-29T00:00:00Z: Valid from Nov 29, 2024, at 12:00 AM UTC.

  • spr=https: Requires HTTPS.

  • sig=abcdef1234567890: Signature.

Container SAS Example

Base URI

https://myaccount.blob.core.windows.net/mycontainer

SAS Parameters

  • ss=b: Access to blob service.

  • srt=sco: Access to service, container, and object.

  • sp=rw: Permissions for read and write.

Identifying Parameters in Practice

1. Azure Portal

SAS tokens generated via the portal display all parameters clearly in the Shared access signature section.

2. Azure CLI/PowerShell

SAS tokens are returned as output with explicit parameter breakdown.

Example CLI Command:

3. Manual Parsing

SAS tokens can be manually parsed by splitting the URI at ? for the base URI and & for individual parameters.

Validating SAS URIs

Inspect Expiry and Start Time

Ensure tokens are valid for the desired time frame.

Check Permissions

Ensure permissions are appropriate for the use case.

Verify Signature (sig) Integrity

Ensure the token hasn't been tampered with by testing access.

Summary

By understanding these components and parameters, you can effectively manage and troubleshoot SAS URIs in Azure Storage.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.