Securing Session Cookies in .NET

|
| By Webner

Session security stands as a critical component of web application development. Within ASP.NET and ASP.NET Core frameworks, session cookies play a vital role in tracking authenticated users. Without proper security measures, these cookies become prime targets for malicious actors seeking

CakePhp 3.x | Declaration of user defined constants

| By Webner

In cakephp 3 we declare constants in bootstrap.php file under /app/config folder. A constant can be declared as: Configure::write(‘CONSTANT_NAME’, Value, true); Example: Configure::write(‘USERNAME’, ‘Webners’, true); To use this constant in another file, use this: use Cake\Core\Configure; Now the constant can