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.
isohunt-api
Advanced tools
API to search for torrent files on isoHunt website.
Like every other npm package, run the command
npm install isohunt-api
Search torrent files for South Park season 19 episode 6.
var isohuntApi = require('isohunt-api');
isohuntApi.search('South Park S19E06', { category: 'tv' }).then(torrentList => {
torrentList.forEach(torrentInfo => {
isohuntApi.getTorrentUrl(torrentInfo.infoUrl).then(torrentUrl => {
console.log(torrentInfo);
console.log(torrentUrl);
});
});
});
Searches and returns the list of torrent files found by isohunt.to.
The list is limited to one page of results, 40 items max. It is sorted by seeders count in descending order by default.
Category list is the following: tv, movies, music, games, software, books, adult, other.
Returns a promise which is resolved when the search is complete.
This promise returns a list of objects containing the isohunt torrent info url, title, verified status, size, seeders count and rating.
Returns a torrent file url providing an info url.
Returns a promise which is resolved when the torrent url is found.
This promise returns the torrent url string.
Returns a magnet url providing an info url.
Returns a promise which is resolved when the magnet url is found.
This promise returns the magnet url string.
Returns an object containing the magnet and the torrent file urls providing an info url.
Returns a promise which is resolved when the magnet and torrent file urls are found.
This promise returns an object with magnetUrl and torrentUrl properties.
FAQs
API to search for torrent files on isohunt.to website
The npm package isohunt-api receives a total of 1 weekly downloads. As such, isohunt-api popularity was classified as not popular.
We found that isohunt-api demonstrated a not healthy version release cadence and project activity because the last version was released 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.