At AbacatePay, we take security seriously. If you discover a security vulnerability within our PHP SDK, please follow these steps:
- DO NOT open a public GitHub issue
- Email us at ajuda@abacatepay.com
- Include detailed information about the vulnerability
- Allow us up to 48 hours for an initial response
- Please avoid sharing the vulnerability details publicly until we've had a chance to address it
When using the AbacatePay PHP SDK, please follow these security guidelines:
- Never commit your API tokens to version control
- Use environment variables or secure secret management systems
- Rotate your API tokens periodically
- Use different tokens for development and production environments
// Good Practice
\AbacatePay\Clients\Client::setToken($_ENV["ABACATEPAY_TOKEN"]);
// Bad Practice - Never do this
\AbacatePay\Clients\Client::setToken("abc123xyz...");