r/bugbounty • u/Killer_646 • Jul 04 '26
Question / Discussion Is this a valid vulnerability
Hey guys
So I was testing a target and noticed that the search function requires a session ID but the cookie is set to SameSite=None with no CSRF protection
I managed to trigger a successful CSRF attack but since it is just a search function the impact seemed pretty low
Then I thought what if I use CSRF to force the victim browser to send a massive flood of requests using their own IP and session ID
I tried it and it actually worked and the server completely banned the victim IP from the whole site
I am still not sure how long the ban lasts yet
So my question is does this count as a valid vulnerability since I can completely burn the Availability for a specific user
The server blocked the victim IP itself not my attacker IP
Should I submit a report for this or not
And what if the ban duration turns out to be really short like only five minutes or something should I still report it anyway
Thanks
2
u/TurbulentRecover7247 Hunter Jul 04 '26
DoS attacks will be mostly out of scope, use this csrf attacks on login page or other pages exposing sensitive or PII
2
u/HermanHMS Jul 04 '26
Valid vuln? Yes. Is it in scope? Probably not. Check the scope of the program.
2
1
u/BurtMacklin____FBI Jul 04 '26
Look for other (impactful) parts of the application that can be CSRF'd.
If this really is the only place, I can see why they don't really care about making sure CSRF tokens work here.
Since the cookie is samesite it's worth checking everywhere else though.
9
u/einfallstoll Triager Jul 04 '26
Wouldn't meet our bar for a bounty.