Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
archambault-scraper
Advanced tools
A scraper for http://www.archambault.ca
Using NPM:
npm i --save archambault-scraper
var archambault = require('archambault-scraper');
var query = {
query: 'Radiohead',
category: 'Music',
searchByArtist: true,
sortBy: 'Relevance',
order: 'Desc',
limit: 10,
page: 1
};
archambault.search(query, function(error, products) {
if (error) {
console.log(error);
}
if (products) {
console.log(products);
}
});
ValidationError
Error instance with additional Object property errorObjects
which content all the error information, see ajv error.
ListValidationError
Error instance with additional Array property validationError
of ValidationError instance.
search(params, callback)
Search products on the Archambault online store. Each products are validate against the product JSON schema.
params
An Object with the following properties:
params.query
Type: String required
What you search.
params.category
Type: String required
One of the following:
Sheet Music
E-Books
Music
Videos and TV Shows
Books
Instruments
Toys & Games
Gifts and Stationary
params.searchByArtist
Type: Boolean, default: false
Specify that the query is the "artist" name (musician, producer, writer, etc.).
params.sortBy
Type: String, default: Relevance
One of the following:
Relevance
Popularity
Title
Released
Price
params.order
Type: String, default: Asc
One of the following:
Asc
Desc
params.limit
Type: Integer
Number of products per page.
params.page
Type: Integer
Index of the page.
callback(error, products)
The products
contains the valid products. If there is validation error, error
will be a ListValidationError, but there might still be valid products
.
function callback(error, products) {
if (error) {
console.log(error.message);
if (error instanceof ListValidationError) {
// List all the validation messages
for (var i = 0; i < error.validationErrors.length; i++) {
console.log(error.validationErrors[i].message);
}
}
}
console.log('Number valid products:', products.length);
console.log(products);
}
Feature tests are run daily, thank to Travis CI new feature CRON Jobs. This way we know if the scraper is ever broken.
Run the test:
npm test
MIT.
FAQs
A scraper for http://www.archambault.ca.
The npm package archambault-scraper receives a total of 0 weekly downloads. As such, archambault-scraper popularity was classified as not popular.
We found that archambault-scraper 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.