You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
puts "Searching in #{path} for potential EoP files..."
def potential_eop_files(search)
search.each do |file|
File.file?(file) && File.executable?(file) && File.writable?(file) && File.readable?(file) ? puts("Weak permissions found in #{file}") : puts("No weak permissions found in #{file}")