Sunday, August 30, 2020

CSRF Referer Header Strip

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.

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:
  1. learn something very cool;
  2. have a serious headache from all the new info at the end.
This blog post from him is a bit lighter and covers some useful theoretical background, so make sure you read that first before you continue reading this post. He shows a few nice tricks to strip the Referer, but I was wondering; maybe there is an easier way?

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 articles


  1. Install Pentest Tools Ubuntu
  2. Hack Tools Download
  3. Pentest Tools For Windows
  4. Nsa Hacker Tools
  5. Bluetooth Hacking Tools Kali
  6. Hacker
  7. Hacker Tools For Pc
  8. Hacking Tools For Windows Free Download
  9. Hack Tools Online
  10. Hacker Tools For Mac
  11. Hacker Tools 2020
  12. Nsa Hack Tools Download
  13. Hacking Tools For Kali Linux
  14. Bluetooth Hacking Tools Kali
  15. Hacking Tools For Kali Linux
  16. Hacker Tools Github
  17. Underground Hacker Sites
  18. Hack Tools
  19. Black Hat Hacker Tools
  20. Hacker
  21. Pentest Tools Find Subdomains
  22. Termux Hacking Tools 2019
  23. Growth Hacker Tools
  24. Black Hat Hacker Tools
  25. Hacker Tools Apk Download
  26. Hack Tools Mac
  27. Blackhat Hacker Tools
  28. Hacking Tools For Windows
  29. Computer Hacker
  30. Hacking Tools Mac
  31. Hacking Tools Windows 10
  32. Hacking Tools 2019
  33. Hacking App
  34. Computer Hacker
  35. Hack Tools For Pc
  36. Pentest Recon Tools
  37. Hacking Tools For Pc
  38. Pentest Tools Open Source
  39. Hacker Tools For Mac
  40. Hacker Tools Apk Download
  41. Hacker
  42. Pentest Tools For Mac
  43. Nsa Hack Tools Download
  44. Easy Hack Tools
  45. Pentest Tools Linux
  46. Hacker Tools Github
  47. Hacker Tools Free
  48. Hacks And Tools
  49. Best Pentesting Tools 2018
  50. Pentest Tools Website
  51. Growth Hacker Tools
  52. Pentest Tools For Windows
  53. Blackhat Hacker Tools
  54. Hack Tools Online
  55. Hack App
  56. Top Pentest Tools
  57. Android Hack Tools Github
  58. Pentest Automation Tools
  59. Hacker Tools 2019
  60. Hacking Tools 2019
  61. Hacker Security Tools
  62. Hack Tool Apk
  63. Hacker Security Tools
  64. Hacking Tools Mac
  65. Pentest Recon Tools
  66. Hacker Tools Apk Download
  67. Pentest Tools Subdomain
  68. Kik Hack Tools
  69. Easy Hack Tools
  70. Install Pentest Tools Ubuntu
  71. Hack Rom Tools
  72. Hacker Security Tools
  73. Hacks And Tools
  74. Hacking Tools 2020
  75. Hacker Tools Free Download
  76. Nsa Hacker Tools
  77. Nsa Hack Tools Download
  78. Pentest Tools Linux
  79. Hacker Tools Apk Download
  80. Pentest Reporting Tools
  81. Pentest Tools List
  82. Hacker Tools Hardware
  83. Pentest Tools Windows
  84. Tools For Hacker
  85. Github Hacking Tools
  86. Hacker Tools Apk
  87. Hacker Tool Kit
  88. Hacker Tools Hardware
  89. Hack Tools 2019
  90. Pentest Tools Nmap
  91. Blackhat Hacker Tools
  92. Github Hacking Tools
  93. What Are Hacking Tools
  94. Pentest Tools Online
  95. Pentest Tools Apk
  96. Pentest Tools For Mac
  97. Pentest Tools Windows
  98. Hacker Tools List
  99. Pentest Recon Tools
  100. Pentest Reporting Tools
  101. Pentest Tools Bluekeep
  102. Hacker Tools Free
  103. Blackhat Hacker Tools
  104. Pentest Tools Alternative
  105. Hacker Tools 2020
  106. Best Hacking Tools 2020
  107. Kik Hack Tools
  108. How To Hack
  109. Ethical Hacker Tools
  110. Hacker Hardware Tools
  111. Pentest Box Tools Download
  112. Pentest Tools Online
  113. Hacking Tools For Windows 7
  114. How To Make Hacking Tools
  115. Termux Hacking Tools 2019
  116. Pentest Tools Linux

No comments:

Post a Comment