|
|
|
|
|
by divtxt
5186 days ago
|
|
I have no problem with cross-site GET requests because I know GETs should behave as 'read-only' anyway for lots of reasons. What I don't get is how arbitrary cross-site POSTs with malicious values are allowed. As far as I can tell, anyone can post this form: <form action="http://bank.com/send_money><input name="to_account" value="SCAMMER-1234"></form> Worse, one article will tell you to only allow Referrer == "bank.com", and then another will tell you that even that is no longer enough?!!! Why can't we change the browser or the web server layer to prevent this by default?! |
|