Implementing Mutual TLS Authentication with Nginx

Generating Certificates To establish mutual authentication, you must first create a Certificate Authority (CA) and sign your server and client certificates. Use the following commands to generate the necessary keys and certifictaes: # Generate the root CA private key openssl genrsa -out root_authority.key 4096 # Generate the root CA self-signed ...

Posted on Thu, 07 May 2026 10:53:29 +0000 by jrodd32

JWT Security: A WebGoat Challenge Walkthrough

Cookie (Stored in Browser) A cookie is a specific piece of data that is permanently stored in the browser. It is merely a data storage functionality implemented by browsers. Cookies are generated by the server, sent to the browser, and saved as key-value pairs in a text file within a directory on the client. On subsequent requests to the same w ...

Posted on Thu, 07 May 2026 05:24:52 +0000 by marcela1637