Category: Web Technologies
-
[Solved] Vue.js Inner Components Not Updating
I came across an interesting problem in Vue.js and wanted to share the solution. The Problem Inner components were not updating based on changes to a computed value. Here is a snippet: When ‘unselected’ (a computed value) was updated, the view didn’t change. I confirmed that the computed value ‘unselected’ and v-for were working by…
-

IDOR
I created my first video regarding web vulnerabilities: IDOR (Insecure Direct Object Reference). Feel free to check it out and leave a comment!
-

Session Management for Web Apps
HTTP is a stateless protocol meaning that each request does not save any information. When you login into a web application, it must somehow maintain that you are logged in. One of the common approaches to that problem is using a session identifier. Important Qualities “HttpOnly” Session Cookie An HttpOnly cookie prevents JavaScript from accessing…
-

