In the thread which @vmagnin linked, Steve mentions an ISO document demonstrating several Fortran vulnerabilities. Some scenarios are quite interesting like
use iso_c_binding ! potentially exploitable
use, intrinsic :: iso_c_binding ! safer
The idea here is that one might inadvertently use a non-intrinsic iso_c_binding
containing malicious code.
Thanks @billlong for sharing the article.