Skip to content

Commit 7a16c31

Browse files
authored
Merge pull request #309 from ganesh-bruno/docs/ntlm-auth
Docs for NTLM auth
2 parents 91abe50 + d78f578 commit 7a16c31

File tree

6 files changed

+24
-1
lines changed

6 files changed

+24
-1
lines changed

public/screenshots/auth/basic.webp

952 KB
Binary file not shown.

public/screenshots/auth/bearer.webp

949 KB
Binary file not shown.

public/screenshots/auth/digest.webp

953 KB
Binary file not shown.
969 KB
Binary file not shown.

src/pages/auth/_meta.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ export default {
66
"basic": "Basic",
77
"bearer": "Bearer",
88
"digest": "Digest",
9+
"ntlm":"NTLM",
910
"add-and-manage-certs": "Add and Manage Certificates"
10-
}
11+
}

src/pages/auth/ntlm.mdx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Authenticate with NTLM
2+
3+
NTLM (NT LAN Manager) is a Microsoft authentication protocol used for Windows-based systems. Its challenge-response authentication mechanism is primarily used for:
4+
- SharePoint
5+
- Exchange
6+
- Internal corporate APIs
7+
8+
Unlike basic authentication, which has a less secure protection layer, NTLM has multiple handshake steps and offers more robust security.
9+
10+
## NTLM in Bruno
11+
12+
Follow these steps to use NTLM authentication:
13+
14+
1. Open your request
15+
2. Navigate to the **Auth** tab
16+
3. Select **NTLM** from the dropdown list
17+
4. Fill in the required fields:
18+
- **Username**: Your Windows username
19+
- **Password**: Your Windows password
20+
- **Domain**: Your Windows domain name
21+
22+
![ntlm-auth](/screenshots/auth/ntlm-auth.webp)

0 commit comments

Comments
 (0)