From 76158b4d34144ab0e278d6d121f6e29bb31a3343 Mon Sep 17 00:00:00 2001 From: T1erno <78065668+T1erno@users.noreply.github.com> Date: Fri, 9 Jan 2026 12:35:01 -0600 Subject: [PATCH] Add impersonation command example for mssql Added instructions for executing commands as another user. --- mssql-protocol/authentication.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mssql-protocol/authentication.md b/mssql-protocol/authentication.md index 8748102..6d03116 100644 --- a/mssql-protocol/authentication.md +++ b/mssql-protocol/authentication.md @@ -41,3 +41,9 @@ MSSQL 10.10.10.52 1433 None [+] admin:m$$ql_S@_P@ssW0rd! ```bash nxc mssql 10.10.10.52 -u admin -p 'm$$ql_S@_P@ssW0rd!' --port 1434 ``` + +### Execute as other user + +```bash +nxc mssql 10.10.10.52 -u user -p 'Password123!' --impersonate 'sysadmin' +```