class Zoom::SecurityProfile::Passwords

Public Class Methods

new(n = nil, t = nil, f = nil, b = nil, a = nil) click to toggle source
Calls superclass method Zoom::SecurityProfile::new
# File lib/zoom/profile/passwords.rb, line 2
def initialize(n = nil, t = nil, f = nil, b = nil, a = nil)
    super(n, t, f, b, a)
    # Don't search binary files
    # grep_like_format_flags(true)
    @regex = "(key|pa?ss(w(o?r)?d)?)[^:=,>]? *[:=,>]"
end