Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.7 KB

SECURITY.md

File metadata and controls

49 lines (32 loc) · 1.7 KB

Security Policy

Reporting a vulnerability

Please do not open GitHub issues or pull requests - this makes the problem immediately visible to everyone, including malicious actors.

Security issues in this open-source project can be safely reported to Tatum's HelpDesk.

Tatum's security team will triage your report and respond according to its impact on Tatum users and systems.

SSL is mandatory

All API calls use SSL by default. For security reasons, please never set CURLOPT_SSL_VERIFYPEER = 0 or CURLOPT_SSL_VERIFYHOST = 0 in cURL requests.

If you receive an ApiException related to SSL, please make sure you have configured your cURL and SSL correctly.

  1. Download cacert.pem or use the one that came with your PHP installation
  2. Edit php.ini and set the following:
    • curl.cainfo = "{path to cacert.pem}"
    • openssl.cafile = "{path to cacert.pem}"

Keep your API keys private

Never disclose your Tatum API keys and never use them in plain-text in your code.

BAD

new \Tatum\Sdk('mainnet-key', 'testnet-key');

GOOD

// Keys passed as environment variables
new \Tatum\Sdk(getenv('TATUM_MAINNET_KEY'), getenv('TATUM_TESTNET_KEY'));

// Keys loaded from an external source
new \Tatum\Sdk($tatumMainnetKey, $tatumTestnetKey);

Supported Versions

The following releases are currently being supported for security updates:

Version Supported
2.x.x
1.0.x

Please switch to one of the supported versions as soon as possible.