18 lines
275 B
Plaintext
18 lines
275 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
include::../ask-yourself.adoc[]
|
||
|
|
||
|
include::../recommended.adoc[]
|
||
|
|
||
|
== Sensitive Code Example
|
||
|
|
||
|
----
|
||
|
import os
|
||
|
|
||
|
def send_signal(pid, sig, pgid):
|
||
|
os.kill(pid, sig) # Sensitive
|
||
|
os.killpg(pgid, sig) # Sensitive
|
||
|
----
|
||
|
|
||
|
include::../see.adoc[]
|