MSSQL (1433)
The MSSQL module emulates a Microsoft SQL Server, allowing you to create honeypots that mimic database services, and log login attempts.
Configuration
json
"mssql": [
{
"port": 1433,
"hostname": "server-01",
"version": "2012"
}
]Options
| Option | Type | Description | Default |
|---|---|---|---|
| port | integer | TCP port number for the MSSQL service | 1433 |
| hostname | string | Server hostname to present | "server-01" |
| version | string | SQL Server version to emulate | "2012" |
The version parameter accepts the following values to emulate different SQL Server versions:
2008- SQL Server 20082012- SQL Server 2012 (default)2014- SQL Server 20142016- SQL Server 20162017- SQL Server 20172019- SQL Server 20192022- SQL Server 2022
Each version will present the appropriate TDS version number and server version string to appear as that SQL Server version to clients.
