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! :)
More articles
- Pentest Tools For Windows
- Hacker Tools
- Hacker Tools Free Download
- Hacker Security Tools
- Hacker
- Tools Used For Hacking
- Hacker Tools For Mac
- Hacking Tools Software
- Hack Tools
- Hacking Tools Windows
- Hack Tools 2019
- Hacking App
- Hacking Tools Mac
- Hack Tools Pc
- Hacker Tools Free Download
- Pentest Tools Android
- Hack Tools Pc
- Hacking Tools 2020
- Hacking Tools 2019
- Easy Hack Tools
- Termux Hacking Tools 2019
- Hack Tools
- Hacking Tools Download
- Pentest Tools Apk
- Hacking App
- Hacking Tools Online
- Pentest Tools For Ubuntu
- Pentest Tools Apk
- Pentest Automation Tools
- Wifi Hacker Tools For Windows
- Hack Apps
- Hack Tools 2019
- Hacking Apps
- Hacker Tools Software
- Computer Hacker
- Easy Hack Tools
- Hack Website Online Tool
- Top Pentest Tools
- Hack Tools For Pc
- Pentest Tools Linux
- Hacking Tools And Software
- Kik Hack Tools
- Hak5 Tools
- Nsa Hack Tools
- Hack Tools Pc
- Hacking Tools For Windows Free Download
- Pentest Tools Kali Linux
- Hacking Tools For Windows
- Hacking Tools For Beginners
- Underground Hacker Sites
- Growth Hacker Tools
- Pentest Tools For Mac
- Android Hack Tools Github
- Black Hat Hacker Tools
- Hacker Tools Free
- Hack Tools
- How To Install Pentest Tools In Ubuntu
- Pentest Tools For Android
- How To Make Hacking Tools
- Hackrf Tools
- Pentest Recon Tools
- Hacker Tools Apk
- Underground Hacker Sites
- Pentest Tools Kali Linux
- Free Pentest Tools For Windows
- Hacking Tools 2019
- Hacking Tools For Kali Linux
- Pentest Tools Tcp Port Scanner
- Pentest Tools Alternative
- Pentest Tools Download
- Top Pentest Tools
- Pentest Tools Port Scanner
- Termux Hacking Tools 2019
- Growth Hacker Tools
- Hacker Tools Windows
- Hacking Tools Free Download
- Hacking Tools Download
- Hacking Tools Windows
- Tools Used For Hacking
- Hacking Tools Hardware
- Pentest Tools Subdomain
- Free Pentest Tools For Windows
- Pentest Reporting Tools
- Hack Rom Tools
- Pentest Tools Download
- Hacking Apps
- Hacker Techniques Tools And Incident Handling
- Hacker Tools Hardware
- Hacker Hardware Tools
- Hacks And Tools
- Hacking Tools For Mac
- Pentest Tools Framework
- Black Hat Hacker Tools
- Game Hacking
- Hacker Search Tools
- Pentest Tools Website
- Hacking Tools Usb
- Pentest Tools
- Hacking Tools Hardware
- Hacker Tools Free
- Hacker Tools 2019
- Best Pentesting Tools 2018
- Hacking Tools Usb
- Hacker Tool Kit
- Pentest Tools Website
- What Is Hacking Tools
- Hacking Tools 2019
- New Hacker Tools
No comments:
Post a Comment