
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@rikvanhaaren/ah_shop_api
Advanced tools
'Unofficial' Albert Heijn shop api wrapper for Node.js
This is a node.js application that is connected to the Albert Heijn shop api. This api has the purpose to search products inside the webshop by a search term. The result of this will be: Cards (products), page, aggregation, taxonomies, querySuggestions.
npm i @rikvanhaaren/ah_shop_api
then
const { AHShopClient } = require("@rikvanhaaren/ah_shop_api");
const client = new AHShopClient();
or
import { AHShopClient } from "@rikvanhaaren/ah_shop_api";
const client = new AHShopClient();
client.product().getProductByName('Red Bull').then((result) => {
console.log(JSON.stringify(result));
});
const filter = {
sortBy: "nutriscore",
property: ["store_department:non-food", "store_department:diepvries"],
page: 1,
size: 10,
}
client.product().getProductByName('Red Bull', filter).then((result) => {
console.log(JSON.stringify(result));
});
or
const filter: productFilter = {
sortBy: sortByOption.nutriscore,
property: [AfdelingOption.nonFood, AfdelingOption.diepvries],
page: 1,
size: 10,
}
client.product().getProductByName('Red Bull', filter).then((result) => {
console.log(JSON.stringify(result));
});
client.product().getProductByID(4117).then((result) => {
console.log(JSON.stringify(result));
});
client.getURL("/zoeken/api/products/search").then((result) => {
console.log(JSON.stringify(result));
});
You can check out the full license here
This project is licensed under the terms of the MIT license.
FAQs
Get products from the AlbertHeijn web store.
The npm package @rikvanhaaren/ah_shop_api receives a total of 2 weekly downloads. As such, @rikvanhaaren/ah_shop_api popularity was classified as not popular.
We found that @rikvanhaaren/ah_shop_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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.