Signalling processes is security-sensitive. It has led in the past to the following vulnerabilities:

Sending signals without checking properly which process will receive it can cause a denial of service.

Ask Yourself Whether

There is a risk if you answered yes to any of those questions.

Recommended Secure Coding Practices

Sensitive Code Example

posix_kill(42, 42); // Sensitive

See