class Brakeman::CheckCrossSiteScripting

def process_case exp

def process_case exp
  #Ignore user input in case value
  #TODO: also ignore when values
  current = 2
  while current < exp.length
    process exp[current] if exp[current]
    current += 1
  end
  exp
end