mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
Fix type in the MSSql version query
https://docs.microsoft.com/en-us/sql/t-sql/functions/version-transact-sql-configuration-functions?view=sql-server-ver15#syntax
This commit is contained in:
parent
5acf1ba657
commit
563a485b62
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ You can login into the service using **impacket mssqlclient.py**
|
|||
mssqlclient.py -db volume -windows-auth <DOMAIN>/<USERNAME>:<PASSWORD>@<IP> #Recommended -windows-auth when you are going to use a domain. use as domain the netBIOS name of the machine
|
||||
|
||||
#Once logged in you can run queries:
|
||||
SQL> select @@ version;
|
||||
SQL> select @@version;
|
||||
|
||||
#Steal NTLM hash
|
||||
sudo responder -I <interface> #Run that in other console
|
||||
|
|
Loading…
Reference in a new issue