Examples/Vulnerable_ExcessiveFilePermission_2.ps1

function Set-UnsafePermission2 {
    param($path)

    icacls $path /grant Everyone:(F)
}