Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,32 @@

## Supported Versions

| Version | Supported |
|---------| ------------------ |
| > 8.1.x | :white_check_mark: |
| 8.1.x | :white_check_mark: |
| 8.0.x | :white_check_mark: |
| < 8.0 | :x: |
| InterMix Version | PHP Version | Security Updates |
| ---------------- | ----------- | ---------------- |
| 2.x | 8.3+ | :white_check_mark: |
| 1.x | 8.0 - 8.2 | :x: |
| < 1.0 | < 8.0 | :x: |

## Reporting a Vulnerability

Submit issues in issues section to report any vulnerability!
Please report security vulnerabilities privately.

- Subject: `SECURITY: infocyph/intermix - <short title>`
- Include:
- affected version
- impact summary
- reproduction steps or PoC
- suggested fix (if available)

Please do not open a public GitHub issue for unpatched vulnerabilities.

## Security Notes

- `ValueSerializer::decode()` / `ValueSerializer::unserialize()` should only process trusted payloads.
- For untrusted transport channels, enable payload signing:

```php
use Infocyph\InterMix\Serializer\ValueSerializer;

ValueSerializer::setPayloadSigningKey($_ENV['INTERMIX_SIGNING_KEY']);
```
Loading