bobo2000
bobo2000

Reputation: 1877

Azure blob Container can still be accessed directly, even after being set to private

I have set a 'public' container where the blobs are stored as 'private', however irrespective of that I am still able to access the blobs directly with their URL within the container.

Any idea of why this is happening?

Thanks

Upvotes: 0

Views: 373

Answers (1)

kwill
kwill

Reputation: 11008

I suspect that your browser or some other cache server is caching the file and you are not actually going to blob storage to get the file. You can use Fiddler or Netmon to validate what requests are being made to storage, or perhaps try a different machine or an in-private browsing session.

Once a blob container is marked private you cannot access any blob in that container without the private key or a signed request.

Upvotes: 2

Related Questions