Cross-Site Request Forgery (CSRF) in ampache/ampache

Valid

Reported on

Jul 24th 2021


✍️ Description

When you don't set the SameSite attribute of cookies the browsers have special act in front of this issue.(I mean set default value on it) chrome and chromium based browsers set the attribute "Lax" that mean if you do add/delete/alter operation in a get HTTP request then your site more vulnerable with CSRF attacks.

But Firefox ( one of big ones ) don't set this attribute to "Lax" and set it to "none" that makes all POST and GET requests more Vulnerable to CSRF attack.

In demo.apache.dev you don't set any SameSite attribute for your cookies. In develop.ampache.dev also you set SameSite attribute for all cookies to "Strict" that is good but for main session cookie that name "ampache" you didn't set any SameSite attribute.

So in Firefox attacker can delete any Smart Playlist without user's permission With CSRF attack that users already allowed manually do it.

🕵️‍♂️ Proof of Concept

// PoC.html

<html>
  <body>
  <script>history.pushState('', '', '/')</script>
    <form action="https://develop.ampache.dev/server/ajax.server.php?page=browse&action=delete_object&type=smartplaylist&id=20" method="POST">
      <input type="submit" value="Submit request" />
    </form>
  </body>
</html>

Here the attacker should knows the id parameter's value to preform attack. Then attacker could delete any Smart Playlist.

💥 Impact

This vulnerability is capable of delete any Smart Playlist without user's permission that have high impact on availability of user interactions.

Fix

You should set SameSite attribute to Lax and don't use Get method for writing, Or use strict if you don't want to share cookies to any third party application.

Occurrences

lachlan
2 years ago

@admin can you ping me as a maintainer for this report?

Z-Old
2 years ago

Admin


Hey lachlan, I've authorised you as the maintainer of ampache, meaning you'll have rights for all future reports against ampache/ampache. Please let me know if you're still unable to view/interact with this page, thanks!

lachlan validated this vulnerability 2 years ago
amammad has been awarded the disclosure bounty
The fix bounty is now up for grabs
lachlan marked this as fixed with commit efed4e 2 years ago
lachlan has been awarded the fix bounty
This vulnerability will not receive a CVE
amammad
2 years ago

Researcher


Hey lachlan , How are you man ?

Can I ask you to give me two more account in https://develop.ampache.dev/ I need these two account for testing some security tests.

Best regards.

to join this conversation