Search code examples
phpzend-frameworkzend-auth

Storing User Object in Zend_Auth's Default Storage


Is storing an object containing the user's data in Zend_Auth's default storage secure? Why or why not?


Solution

  • Zend_Auth's default storage uses PHP Session. It's 'security rating' depends on server overall security.

    In double words - it is secure enough.