Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@vulcan-sql/extension-driver-clickhouse
Advanced tools
Clickhouse driver for VulcanSQL
This is the ClickHouse driver for VulcanSQL, provided by Canner.
Install the package:
npm i @vulcan-sql/extension-driver-clickhouse
Update your vulcan.yaml
file to enable the extension:
extensions:
clickhouse: '@vulcan-sql/extension-driver-clickhouse'
Create a new profile in your profiles.yaml
file or in the designated profile paths. For more information, please refer to the ClickHouse Client documentation for the available arguments.
- name: ch # Profile name
type: clickhouse
connection:
# Optional: ClickHouse instance URL. Default is http://localhost:8123.
host: 'www.example.com:8123'
# Optional: Request timeout in milliseconds. Default value: 30000
request_timeout: 60000
# Optional: Maximum number of sockets to allow per host. Default value: Infinity.
max_open_connections: 10
# Optional: Compression settings for data transfer. Currently, only GZIP compression using zlib is supported. See https://clickhouse.com/docs/en/integrations/language-clients/nodejs#compression for details.
compression:
# Optional: "response: true" instructs ClickHouse server to respond with a compressed response body. Default: true
response: true
# Optional: "request: true" enables compression on the client request body. Default value: false
request: false
# Optional: The name of the user on whose behalf requests are made. Default value for username: 'default'
username: 'user'
# The user's password. Default: ''.
password: 'pass'
# Optional: The name of the application using the Node.js client. Default value: VulcanSQL
application: 'VulcanSQL'
# Optional: Database name to use. Default value: 'default'
database: 'hello-clickhouse'
# Optional: ClickHouse settings to apply to all requests. The following is a sample configuration.
# For all available settings, see https://clickhouse.com/docs/en/operations/settings.
# For the definition, see https://github.com/ClickHouse/clickhouse-js/blob/0.1.1/src/settings.ts
clickhouse_settings:
# Optional: Allow Nullable types as primary keys. Default: false
allow_nullable_key: true
# Optional: Configure TLS certificates. See https://clickhouse.com/docs/en/integrations/language-clients/nodejs#tls-certificates
tls:
# Optional: The path to the CA Cert file
ca_cert: 'ca-cert-file-path'
# Optional: The path to the Cert file
cert: 'cert-file-path'
# Optional: The path to the key file
key: 'key-path'
# Optional: ClickHouse Session ID to send with every request
session_id: ''
# Optional: HTTP Keep-Alive related settings. See https://clickhouse.com/docs/en/integrations/language-clients/nodejs#keep-alive
keep_alive:
# Optional: Enable or disable HTTP Keep-Alive mechanism. Default: true
enabled: true
# Optional: How long to keep a particular open socket alive on the client side (in milliseconds).
# Should be less than the server setting (see `keep_alive_timeout` in the server's `config.xml`).
# Currently, has no effect if unset or false. Default value: 2500 (based on the default ClickHouse server setting, which is 3000)
socket_ttl: 2500
# Optional: If the client detects a potentially expired socket based on this value, the socket will be immediately destroyed before sending the request, and the request will be retried with a new socket up to 3 times. Default: false (no retries)
retry_on_expired_socket: false
The log
option is not included above because it requires defining a Logger class and assigning it. Therefore, it cannot be set through profiles.yaml
.
ClickHouse supports parameterized queries to prevent SQL injection using prepared statements. Named placeholders are defined using the {name:type}
syntax. For more information, refer to the Query with Parameters section in the ClickHouse documentation.
However, the VulcanSQL API supports JSON format for API query parameters and does not support the full range of types available in ClickHouse. VulcanSQL only supports the conversion of the following types:
boolean
to ClickHouse type Bool
number
to ClickHouse types Int
or Float
string
to ClickHouse type String
Therefore, if you need to query data with special types in ClickHouse, such as Array(Unit8)
, Record<K, V>
, Date
, DateTime
, and so on, you can use ClickHouse Regular Functions or Type Conversion Functions to handle them.
Example:
-- If the `val` from the API query parameter is '1990-11-01' and the `born_date` column is of type `Date32`,
-- you can use the toDate function to convert the value. See https://clickhouse.com/docs/en/sql-reference/functions/type-conversion-functions#todate
SELECT * FROM users WHERE born_date = toDate({val:String});
The ClickHouse driver currently does not support caching datasets. If you use the ClickHouse driver with caching dataset features, it will result in failure.
To run tests for the extension-driver-clickhouse
module, use the following command:
nx test extension-driver-clickhouse
FAQs
Clickhouse driver for VulcanSQL
The npm package @vulcan-sql/extension-driver-clickhouse receives a total of 3 weekly downloads. As such, @vulcan-sql/extension-driver-clickhouse popularity was classified as not popular.
We found that @vulcan-sql/extension-driver-clickhouse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.