mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
22 lines
705 B
C++
22 lines
705 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Passing arbitrary connection string to ODBC Driver Manager is insecure, for the following reasons:
|
|
* 1. Driver Manager like unixODBC has multiple bugs like buffer overflow.
|
|
* 2. Driver Manager can interpret some parameters as a path to library for dlopen or a file to read,
|
|
* thus allows arbitrary remote code execution.
|
|
*
|
|
* This function will throw exception if connection string has insecure parameters.
|
|
* It may also modify connection string to harden it.
|
|
*
|
|
* Note that it is intended for ANSI (not multibyte) variant of connection string.
|
|
*/
|
|
std::string validateODBCConnectionString(const std::string & connection_string);
|
|
|
|
}
|