Oleksandr Lazarenkoalexlaer.hashnode.dev·Nov 21, 2023Node.js Security Unleashed: Your Ultimate Defense Guide (1/7)A Preface Nowadays, everyone acknowledges that there exists a plethora of possible attacks and exploits, each capable of employing diverse approaches to compromise a targeted system. Thankfully, a significant portion of them derives from the well-est...Discuss·1 like·40 readsNode.js
N1ghtm4r3n1ghtm4r3.hashnode.dev·Nov 15, 2023Cross-Site Request Forgery (CSRF)What is CSRF CSRF stands for Cross-Site Request Forgery. It is a type of security vulnerability that occurs when an attacker tricks a user's browser into performing an undesired action on a website where the user is authenticated. This can happen if ...Discuss·2 likes#cybersecurity
Bhavesh Yadavcodezera.hashnode.dev·Sep 13, 2023Demystifying CSRF Tokens: Safeguarding Your Website against Sneaky Attacks!Hey there! Today, we're going to dive into the exciting world of CSRF (Cross-Site Request Forgery) tokens. They are like superheroes when it comes to protecting against CSRF attacks. But wait, what are they exactly? 🤔 Well, imagine a scenario where ...Discusscsrf
Stackzerostackzero.hashnode.dev·Aug 7, 2023How To Exploit CSRF In DVWAWe have seen a detailed description of CSRF in the introductory article, so if you didn’t, I suggest reading it.However, before going into the practical example of CSRF by exploiting DVWA, I would like to sum up this attack in a few words. CSRF stand...Discuss·1 likecsrf
Anil Vermablog.anilvermaspeaks.in·Aug 6, 2023Security & Compliance(CSRF)Cross site request forgery (CSRF), also known as XSRF, Sea Surf or Session Riding, is an attack vector that tricks a web browser into executing an unwanted action in an application to which a user is logged in. Prevention Logging off web application...Discusscsrf
Stackzerostackzero.hashnode.dev·Aug 4, 2023CSRF Introduction: What you need to know!CSRF is one of the most known web application vulnerabilities, but, it could be pretty hard to understand it deeply.So I’m trying to make this introduction to CSRF as beginner-friendly as possible.I assume that the reader has a minimum of basic IT kn...Discuss·1 likecsrf
Cxnsxlecxnsxle.hashnode.dev·Jul 26, 2023CSRF VulnerabilityWhat is CSRF? Cross-site request forgery (CSRF) vulnerabilities may arise when applications rely solely on HTTP cookies to identify the user that has issued a particular request. Because browsers automatically add cookies to requests regardless of th...Discuss·2 likescsrf
Sandeep Korrapatiphoenixdev.hashnode.dev·Jun 12, 2023Client-Side Web App Security: Top 10 Vulnerabilities and Their SolutionsThe client side of a web application is crucial, as it directly interacts with the user. Hence, ensuring its security is paramount. Today, we will delve into common vulnerabilities and provide in-depth explanations and solutions. 1. Cross-Site Script...Discusswebsecurity
Hemanthemantdwivedi.hashnode.dev·Jun 23, 2023New way to configuring Spring Security for H2 database consoleThe old way to disable csrf(), headers() and frameOptions() in Spring. @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests( auth -> auth.anyRequest().authenticated...Discuss·1 like·29 readsspring security
Nishi Ajmeranishiajmera.com·May 1, 2023Preventing CSRF attacks: Best practices and techniquesWhat is Cross-Site Request Forgery (CSRF)? CSRF is like a ninja that sneaks into your web application and steals information or performs actions on behalf of a user without their knowledge. Imagine you're at a restaurant and the waiter comes to take ...Discuss·12 likes·86 readsCode Chronicleswebsecurity