As always the information in this thread as well as more can be found in my notes at: https://notes.zanidd.xyz/
Thank you for reading my thread and see you in the next one :)
Remediating Open Redirect
#cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
Remediating CSRF
#cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
Learn to mark your cookies for first-party and third-party usage with the SameSite attribute. You can enhance your site's security by using SameSite's Lax and Strict values to improve protection against CSRF attacks. Specifying the new None attribute lets you explicitly mark your cookies for cross-site usage.
Remediating XSS
#cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
Remediation Session Fixation
Example Function for PHP:
session_regenerate_id(bool $delete_old_session = false): bool
#cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
Remediating Session Hijacking
#hacking #cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
Here is some Advice on how to remediate common Session Security Attacks/Vulns (based on HTB Academy).
1/? 🧵
#hacking #cybersecurity #session #csrf #xss #sessionhijacking #sessionfixation
We develop a website in JAMStack, all URLs are static HTML page, and each interaction with the server are made by a fetch call on our REST API (micro-services). When a user sign in, we want to prop...