Server-side hacking techniques

Practical cache key injection

I have not seen any public writeups about cache key injection. The only mentions I’ve found are the two examples from James Kettle in the original article. However, those bugs were in the CDN providers, not in the applications. Googling cache key injection only yields...

State of DNS Rebinding in 2023

DNS rebinding is quite a complex and misunderstood topic yet it is a great technique for exploiting SSRFs. Roger Meyer from NCC Group wrote a very comprehensive article about the state of DNS rebinding in 2023 along with some recent vulnerabilities. I’m sure you will...

RFC-induced SSRF

Sometimes, we see an absolute URI in the first request line. I saw this trick being used a few times. For example, when exploiting request smuggling. It then sends the request to your server and not the one from the Host header. I never thought about why it works and...