Come ha detto @sgt BOSE. Usando CakeSession::read("Auth.User") otterrai i dati della sessione del tuo attuale utente registrato.
$current_user_data = $this->User->FindById(CakeSession::read("Auth.User.id"));
Ciò restituirà i dati utente correnti (registrati) dal database.