
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
A fast flexible price search engine for various german online shops!
Curiosity 🤷♂️
npm i more4less
import * as more4less from "more4less";
import { AmazonPriceSearchEngine, EbayPriceSearchEngine } from 'more4less'; // Individual classes
const more4less = require("more4less");
const { EbayPriceSearchEngine } = require('more4less'); // Individual classes
import * as more4less from "more4less";
const ebay = new more4less.EbayPriceSearchEngine();
(async () => {
const getProduct = await ebay.search("alexa firestick");
console.log(getProduct);
})();
// or
import { SearchEngineFactory } from "more4less";
const engine = new SearchEngineFactory().GetSearchEngine("Amazon");
(async () => {
const getProduct = await engine.search("alexa firestick");
console.log(getProduct);
})();
import * as more4less from "more4less";
const engine = new SearchEngineFactory().GetSearchEngine("All");
(async () => {
const getProduct = await engine.search("alexa firestick");
console.log(getProduct);
})();
import * as more4less from "more4less";
const searchEngines = new more4less.SearchEngineList([new more4less.EbayPriceSearchEngine(), new more4less.AmazonPriceSearchEngine2()]);
(async () => {
const getProduct = await searchEngines.search("alexa firestick");
console.log(getProduct);
})();
There are two ways of saving the output, either as JSON or CSV
import * as more4less from "more4less";
const searchEngines = new more4less.SearchEngineList([new more4less.EbayPriceSearchEngine(), new more4less.AmazonPriceSearchEngine2()]);
const output = new more4less.JSONOutput("test.json") // path and filename
(async () => {
const getProduct = await searchEngines.search("alexa firestick");
output.outputData(getProduct);
})();
// Each price engine provides the follwoing results:
interface ISearchResult {
engine: string;
link: string;
name: string;
rating: number;
price: number;
thumbnail: string;
}
Software contributions are welcome. If you are not a dev, testing and reproting bugs can also be very helpful!
Please open an issue if you have questions, wish to request a feature, etc.
FAQs
A price search engine for various german online shops
The npm package more4less receives a total of 3 weekly downloads. As such, more4less popularity was classified as not popular.
We found that more4less 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.