Examples/Vulnerable_ExcessiveFilePermission_1.ps1

function Set-UnsafePermission1 {
    param($path)

    chmod 777 $path
}