Intro
Most of the web applications I see are kinda binary when it comes to CSRF protection; either they have one implemented using CSRF tokens (and more-or-less covering the different functions of the web application) or there is no protection at all. Usually, it is the latter case. However, from time to time I see application checking the Referer HTTP header.
A couple months ago I had to deal with an application that was checking the Referer as a CSRF prevention mechanism, but when this header was stripped from the request, the CSRF PoC worked. BTW it is common practice to accept empty Referer, mainly to avoid breaking functionality.
A couple months ago I had to deal with an application that was checking the Referer as a CSRF prevention mechanism, but when this header was stripped from the request, the CSRF PoC worked. BTW it is common practice to accept empty Referer, mainly to avoid breaking functionality.
The OWASP Cross-Site Request Forgery (CSRF) Prevention Cheat Sheet tells us that this defense approach is a baaad omen, but finding a universal and simple solution on the Internetz to strip the Referer header took somewhat more time than I expected, so I decided that the stuff that I found might be useful for others too.
Solutions for Referer header strip
Most of the techniques I have found were way too complicated for my taste. For example, when I start reading a blog post from Egor Homakov to find a solution to a problem, I know that I am going to:
Rich Lundeen (aka WebstersProdigy) made an excellent blog post on stripping the Referer header (again, make sure you read that one first before you continue). The HTTPS to HTTP trick is probably the most well-known one, general and easy enough, but it quickly fails the moment you have an application that only runs over HTTPS (this was my case).
The data method is not browser independent but the about:blank trick works well for some simple requests. Unfortunately, in my case the request I had to attack with CSRF was too complex and I wanted to use XMLHttpRequest. He mentions that in theory, there is anonymous flag for CORS, but he could not get it work. I also tried it, but... it did not work for me either.
Krzysztof Kotowicz also wrote a blog post on Referer strip, coming to similar conclusions as Rich Lundeen, mostly using the data method.
Finally, I bumped into Johannes Ullrich's ISC diary on Referer header and that led to me W3C's Referrer Policy. So just to make a dumb little PoC and show that relying on Referer is a not a good idea, you can simply use the "referrer" meta tag (yes, that is two "r"-s there).
The PoC would look something like this:
- learn something very cool;
- have a serious headache from all the new info at the end.
Rich Lundeen (aka WebstersProdigy) made an excellent blog post on stripping the Referer header (again, make sure you read that one first before you continue). The HTTPS to HTTP trick is probably the most well-known one, general and easy enough, but it quickly fails the moment you have an application that only runs over HTTPS (this was my case).
The data method is not browser independent but the about:blank trick works well for some simple requests. Unfortunately, in my case the request I had to attack with CSRF was too complex and I wanted to use XMLHttpRequest. He mentions that in theory, there is anonymous flag for CORS, but he could not get it work. I also tried it, but... it did not work for me either.
Krzysztof Kotowicz also wrote a blog post on Referer strip, coming to similar conclusions as Rich Lundeen, mostly using the data method.
Finally, I bumped into Johannes Ullrich's ISC diary on Referer header and that led to me W3C's Referrer Policy. So just to make a dumb little PoC and show that relying on Referer is a not a good idea, you can simply use the "referrer" meta tag (yes, that is two "r"-s there).
The PoC would look something like this:
<html>
<meta name="referrer" content="never">
<body>
<form action="https://vistimsite.com/function" method="POST">
<input type="hidden" name="param1" value="1" />
<input type="hidden" name="param2" value="2" />
...
</form>
<script>
document.forms[0].submit();
</script>
</body>
</html>
Conclusion
As you can see, there is quite a lot of ways to strip the Referer HTTP header from the request, so it really should not be considered a good defense against CSRF. My preferred way to make is PoC is with the meta tag, but hey, if you got any better solution for this, use the comment field down there and let me know! :)
Related word- Underground Hacker Sites
- Hacker Tools For Windows
- Beginner Hacker Tools
- Pentest Box Tools Download
- Hacking Tools Usb
- Pentest Tools For Android
- Android Hack Tools Github
- Hack Tools Github
- Pentest Tools Open Source
- Pentest Tools Website
- Hacking Tools Pc
- Hacker Tools For Windows
- Pentest Tools Nmap
- Easy Hack Tools
- Pentest Tools For Windows
- Tools Used For Hacking
- Hacker Tools Apk Download
- Blackhat Hacker Tools
- Hacking Tools For Beginners
- Kik Hack Tools
- Bluetooth Hacking Tools Kali
- Usb Pentest Tools
- Usb Pentest Tools
- Pentest Tools Nmap
- Pentest Tools Open Source
- Hacking Tools For Windows
- Ethical Hacker Tools
- Pentest Tools Nmap
- Hack Tools For Ubuntu
- Hack Rom Tools
- Hacking Tools For Kali Linux
- Pentest Tools Url Fuzzer
- Hacker Tools Software
- Hack Tools Download
- Hacking Tools Github
- Hack Website Online Tool
- Best Hacking Tools 2019
- Pentest Tools Github
- Hacker Tools For Windows
- Pentest Tools Apk
- Pentest Tools
- Hack Tools For Ubuntu
- Hack Tools Mac
- Pentest Tools Download
- Hacker Tools Online
- Hacker Tools
- Install Pentest Tools Ubuntu
- Hack Tools Online
- Hacking Tools For Windows
- Hacker Tools Online
- Pentest Tools
- Beginner Hacker Tools
- Beginner Hacker Tools
- Physical Pentest Tools
- Pentest Tools Linux
- Hack Tools Pc
- Pentest Tools Subdomain
- Hack App
- Pentest Tools For Ubuntu
- Easy Hack Tools
- Beginner Hacker Tools
- Hack Website Online Tool
- Hacking Tools Download
- Bluetooth Hacking Tools Kali
- Hacker Tools 2019
- Hacker Tools For Ios
- Top Pentest Tools
- Wifi Hacker Tools For Windows
- Hacker Tools List
- Pentest Tools Website Vulnerability
- Hack Tools For Games
- Hack Website Online Tool
- Hacking Tools For Beginners
- Hack Tools Download
- Hack Rom Tools
- Tools Used For Hacking
- Growth Hacker Tools
- Blackhat Hacker Tools
- Github Hacking Tools
- Pentest Tools Apk
- Hack Website Online Tool
- Pentest Recon Tools
- Nsa Hack Tools
- Pentest Tools For Mac
- Hacking Tools Kit
- Hack Tools For Ubuntu
- Pentest Tools List
- World No 1 Hacker Software
- Pentest Tools Find Subdomains
- Hack App
- Pentest Tools Framework
- Hacker Tools Hardware
- Pentest Recon Tools
- Physical Pentest Tools
- Pentest Tools Port Scanner
- Hack Tools For Games
- Hacker Hardware Tools
- Pentest Tools Port Scanner
- Ethical Hacker Tools
- Hacker Techniques Tools And Incident Handling
- Hacking Tools
- Pentest Tools Bluekeep
- Termux Hacking Tools 2019
- Hacker
- Underground Hacker Sites
- Hacker Tools Apk Download
- World No 1 Hacker Software
- Hacking Tools Windows 10
- Hacker Tools Online
- Hacking Tools Windows 10
- Hacking Tools And Software
- Hacker Tools Online
- Hacking Tools Windows
- Pentest Tools Windows
- Best Pentesting Tools 2018
- Install Pentest Tools Ubuntu
- Pentest Tools Framework
- Underground Hacker Sites
- Hacker Tools For Windows
- Hacker Tools Online
0 comments:
Post a Comment