MSSQL (1433-2433)
Microsoft SQL Server.
Last updated
Was this helpful?
Microsoft SQL Server.
Last updated
Was this helpful?
1433 TCP
MSSQL
2433 TCP
MSSQL
You can check if it is possible to log in with user “root”
and password “”
.
mssqlclient.py [<DOMAIN>/]<USER>@<IP> -windows-auth
sqsh
From Windows (After queries type GO on new line)
sqsh -S <IP> -U <USER> -P <PASSWORD>
sqlcmd
From Windows (After queries type GO on new line)
sqlcmd -S <IP> -U <USER> -P <PASSWORD>
Or .
From Windows ()
Import-Module .\PowerUpSQL.ps1
Get-SQLInstanceDomain
Get-SQLQuery -Verbose -Instance "<IP>,<PORT>" -username "<DOMAIN>\<USER>" -password "<PASS>" -query 'Select @@version'