Skip to content

Commit bb2a098

Browse files
committed
update
1 parent ed5222c commit bb2a098

4 files changed

Lines changed: 67 additions & 0 deletions

File tree

113 KB
Loading
120 KB
Loading
250 KB
Loading
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Storage Account 04 - Connection String
2+
3+
> Connection String
4+
5+
:::info
6+
7+
**Scenario**
8+
9+
A connection string is one way to access a storage account without credentials. Let's make the most use of the one provided to use and find the flag.
10+
11+
**Overview**
12+
13+
What is a connection string?
14+
15+
A connection string in the Azure storage account is a string that contains the necessary details to create a connection between the application and the Azure storage account. It contains the authentication credentials and other necessary details to access the storage account.
16+
17+
**Hint**
18+
19+
- Storage account can be accessed via a connection string.
20+
21+
**Impact**
22+
23+
- A leak of the connection string for an Azure storage account can have a significant security impact. It can be used for unauthorized access to the storage account, which may lead to data breach, account compromise, increased attack surface, and loss of control. Changing account credentials takes a considerable amount of time, disrupting workflow in the process.
24+
25+
**Reference**
26+
27+
- [Storage Blob Docs](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blobs-introduction)
28+
- [Azure Storage Explorer](https://azure.microsoft.com/en-in/products/storage/storage-explorer)
29+
- [Storage connection strings](https://learn.microsoft.com/en-us/azure/data-explorer/kusto/api/connection-strings/storage-connection-strings)
30+
31+
:::
32+
33+
题目给出了 ConnectionString 信息,可以用于直接连接储存账户
34+
35+
![img](img/image_20260152-225202.png)
36+
37+
输入 ConnectionString 进行连接
38+
39+
![img](img/image_20260152-225229.png)
40+
41+
即可得到flag
42+
43+
![img](img/image_20260153-225326.png)
44+
45+
:::info Flags
46+
47+
<details>
48+
49+
<summary> What type of credential did we use to connect to the storage account? (Access key or connection string) </summary>
50+
51+
```plaintext
52+
connection string
53+
```
54+
55+
</details>
56+
57+
<details>
58+
59+
<summary> What is the flag value? </summary>
60+
61+
```plaintext
62+
kswhcmqupz7525041dzxfjwlksn7752514asuxejgp736asvemowk736
63+
```
64+
65+
</details>
66+
67+
:::

0 commit comments

Comments
 (0)