Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A NodeJS Spotify Downloader package without any API Keys or authentication from Spotify or Youtube-Music.
However, this requires ffmpeg to be installed on your system...
Make sure you have ffmpeg installed on your system preferably version >= 4.0
# NPM
npm i spottydl
# Yarn
yarn add spottydl
// If you use plain Javascript
const SpottyDL = require('spottydl')
// If typescript
import SpottyDL from 'spottydl'
(async() => {
await SpottyDL.getTrack("https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT")
.then(results => { // Returns a <Track>
console.log(results)
});
})();
/* Example Output
{
title: 'Never Gonna Give You Up',
artist: 'Rick Astley',
year: '1987-11-12',
album: 'Whenever You Need Somebody',
id: 'lYBUbBu4W08', // videoId From Youtube-Music
albumCoverURL: 'https://i.scdn.co/image/ab67616d0000b2735755e164993798e0c9ef7d7a',
trackNumber: 1
}
*/
(async() => {
await SpottyDL.getAlbum("https://open.spotify.com/album/2mxFsS5yylSTHNivV53HoA")
.then(results => { // Returns an <Album>
console.log(results)
});
})();
/* Example Output
{
name: 'Cigarettes After Sex',
artist: 'Cigarettes After Sex',
year: '2017-06-09',
tracks: [
{ name: 'K.', id: 'L4sbDxR22z4', trackNumber: 1 },
...
],
albumCoverURL: 'https://i.scdn.co/image/ab67616d0000b27394d280f0006107be47bb4fe7'
}
*/
(async() => {
await SpottyDL.getTrack("https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT")
.then(async(results) => {
let track = await SpottyDL.downloadTrack(results, "~/somePath") // Second parameter is optional...
console.log(track)
});
})();
/* Example Output (Successful)
[
{ status: 'Success', filename: '~/somePath/Never Gonna Give You Up.mp3' }
]
*/
/* Example Output (Failed)
[
{
status: 'Failed (stream)',
filename: ~/somePath/Never Gonna Give You Up.mp3,
id: 'lYBUbBu4W08', // videoId from YT-Music
tags: {
title: 'Never Gonna Give You Up',
artist: 'Rick Astley',
year: '1987-11-12',
...
}
}
]
*/
(async() => {
await SpottyDL.getAlbum("https://open.spotify.com/album/66MRfhZmuTuyGCO1dJZTRB")
.then(async(results) => {
let album = await SpottyDL.downloadAlbum(results, "output/", false)
console.log(album)
});
})();
/* Example Output (Successful)
[
{ status: 'Success', filename: 'output/Crush.mp3' },
{ status: 'Success', filename: 'output/Sesame Syrup.mp3' }
]
*/
/* Example Output (Failed) some tracks failed proceed to use `retryDownload()` method
[
{
status: 'Failed (Stream)',
filename: 'output/Crush.mp3',
id: YT-Music id,
tags: {
// tags for the track...
}
},
{ status: 'Success', filename: 'output/Sesame Syrup.mp3' }
]
*/
(async() => {
await SpottyDL.getPlaylist("https://open.spotify.com/playlist/29zGkCDLvy7embGQEwuqGj")
.then(async(results) => {
let playlist = await SpottyDL.downloadPlaylist(results, "output/", false)
console.log(playlist)
});
})();
/* Example Output (Successful)
[
{ status: 'Success', filename: 'output/Crush.mp3' },
{ status: 'Success', filename: 'output/Sesame Syrup.mp3' }
]
*/
(async() => {
await SpottyDL.getAlbum("https://open.spotify.com/album/66MRfhZmuTuyGCO1dJZTRB")
.then(async(results) => {
let album = await SpottyDL.downloadAlbum(results, "output/", false)
let res = await SpottyDL.retryDownload(album);
console.log(res) // boolean or <Results[]>
});
})();
// Using a while loop until all tracks have no errors (Experimental)
(async() => {
await SpottyDL.getAlbum("https://open.spotify.com/album/66MRfhZmuTuyGCO1dJZTRB")
.then(async(results) => {
let album = await SpottyDL.downloadAlbum(results, "output/", false)
let res = await SpottyDL.retryDownload(album);
while(res != true) {
res = await SpottyDL.retryDownload(res);
console.log(res) // boolean or <Results[]>
}
});
})();
What this module simply does is that it scrapes data from Spotify, then finds the right track/song from Youtube-Music.
Hence, there's no illegal action or DRM bypass being done within this module, as all data is freely taken and used the right way
And other notable NodeJS Spotify downloader projects :D
FAQs
NodeJS Spotify Downloader without any API Keys or Authentication
The npm package spottydl receives a total of 98 weekly downloads. As such, spottydl popularity was classified as not popular.
We found that spottydl demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.