The product records security-relevant information according to an alternate name of the affected entity, instead of the canonical name.
Impact: Hide ActivitiesGain Privileges or Assume Identity
php
//resolve file if its a symbolic link* if(is_link($filename)){ ``` $realFile = readlink($filename); } if(fileowner($realFile) == $user){ echo file_get_contents($realFile); return; } else{ echo 'Access denied'; writeLog($user . ' attempted to access the file '. $filename . ' on '. date('r')); } }