Interacting with MSSQL
Using sqsh
$ sqsh -S 10.129.20.13 -U username -P Password123Using sqlcmd (Priority)
C:\htb> sqlcmd -S 10.129.20.13 -U username -P Password123Using mssqlclient.py (Impacket)
$ mssqlclient.py -p 1433 julio@10.129.203.7 Using dbeaver (GUI)
Note
Commands
Show databases
Use Database
Show tables
Select all data from table
Last updated