Skip to content

naqushab/Saavn-Downloader

 
 

Repository files navigation

Saavn Downloader

asciicast

This reasearch is done by Arun, a fellow github user. i have just utilized to make a downloader.

This is a downloader which i coded when i discovered a loophole in Saavn Android App (a popular music streaming app) which can be used to download any music from Saavn in mp3 format, AFAIK only Pro users can download songs but that are also DRM protected (i will tell you how broken that is), but with this any user can bypass all these protection and get DRM free music on their disk.

I sent a total of 3 mails i suppose to their only email id that i could possibly find from their website and app - "feedback@saavn.com", along with the PoC but in return i got no reply, which shows that they don't check their mails, God bless those customers, or they don't believe me.

On 30th October 2016 i sent them my first mail and till the date of writing (6th December 2016) i didn't receive any mail from Saavn, so i thought to do a full disclosure along with PoC.

Analysis

Let me quicky take you through the process of how i did it.

  • I used Burpsuite to perform Man-In-The-Middle attack to see what was really going to and from the app.
  • I could see the app was receiving the encrypted urls to the songs so i became sure that decryption has to be done at the app side.
  • With a quick look at the decompiled smali files and with 'grep' i could figure out that it was using DES with ECB with no IVs.
  • Then it was matter of few minutes that i had a working python script which could download songs without any protection and limit.

DRM Protection Analysis

DRM protection used in the app is good but its not well integrated in the app.

AES-256 in CBC mode (I may be wrong) is used for DRM and is implemented in both pure Java and in a NDK library.

I don't know much of NDK reversing but from smali files i could figure out that it uses NDK library if its "available" else it uses the Java method.

And there's the catch, the app tries to load the NDK library but if its not found then it doesn't complain rather it uses the java method.

I think it uses NDK library for performance boost but i couldn't extract more information from it so i used the java method, in java method the encryption key used to decrypt the downloaded songs is again hardcoded in the app, which is not at all secure.

So a user with a Pro account can simply delete the NDK library from the apk, reinstall it and then download songs. Then he can decrypt all those downloaded songs and play it in any of his favourite player.

Update

In past few days i have been learing ARM reversing and thought to look inside DRM protection of Saavn. I must say it was not that hard to find the encryption algorithm (AES-256-CBC) and its key and IV.

The ndk library encrypts at max 1 MB from the starting of the file. It also saves the length of encrypted data at the starting of the encrypted file to refer to while decrypting.

This structure explains it better.

struct encrypted_file
{
	int32 lenOfEncryptedPart;
	char encryptedPart[lenOfEncryptedPart];
	char restUnencryptedPart[totalLengthOfFile-lenOfEncryptedPart];
};

In most (all cases) cases the size of the song is greater than 1 MB so i skipped this header and dumped 1 MB starting from 4th offset, decrypt it with AES using openssl and concat it with rest of the un-encrypted part to get DRM free song.

See the saavn_drm_remover.sh script for the commands. It uses openssl and dd which is present in all linux distro by default, if its not then google it for installalation instructions.

Usage

First make it executable by using

chmod a+x saavn_drm_remover.sh
then run

saavn_drm_remover.sh filename

It will produce decrypted file with dec_<filename>

Lesson learned - Don't hide secrets even in native library.

Prerequisite

You need Python and BeautifulSoup4 installed for the script to work.

I used python3 but you can use python2.

Python - https://www.python.org/download/ Python3 - https://www.python.org/download/releases/3.0/
BeautifulSoup4 - https://www.crummy.com/software/BeautifulSoup/bs4/doc/

Usage

python3 saavn_downloader.py

for python 2

python saavn_downloader.py

When asked for the song url enter the url of the album from the saavn website eg. http://www.saavn.com/s/album/blah-blah

Final Note

This project is show that how small coding and implementation mistakes could lead to big problem.

Some ways to fix these:

  • Perform link decryption at server side and not at client side.
  • Don't hardcode encryption or decryption keys at the client side.

And another suggestion, keep an eye on those mails you might get something interesting in it :D

Disclaimer

This is for education purposes. I should not be held responsible for misusage of the script or damage caused because of it. Use it at your own risk.

About

PoC for vulnerability in Saavn App researched by Arun, which allows you to download any song from saavn without being Pro user. Works with Python 2/3

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.0%
  • Shell 1.0%