Documentation
¶
Overview ¶
Package rabbitmq provides a verifier for RabbitMQ connection strings. Live verification requires network access to the RabbitMQ server, so this verifier performs URL format validation only.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Verifier ¶
type Verifier struct{}
Verifier checks whether a RabbitMQ connection string has a valid URL format. It NEVER logs or persists raw password values.
Note: This is a format-check verifier; it performs no live verification, so the result is always StatusUnverified. Live verification would require a network connection to the broker.
func (*Verifier) Verify ¶
func (v *Verifier) Verify(ctx context.Context, raw detector.RawFinding) finding.VerificationResult
Verify checks if the detected RabbitMQ connection string has a valid AMQP URL format. Raw contains the full connection string (amqp://user:pass@host:port/vhost).