Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@voidpkg/scrapper
Advanced tools
If you have any questions or want to help, join our Discord server.
This is a Node.js module available through the
npm registry. Installation is done using the
npm install
command:
$ npm install @voidpkg/scrapper
const { Engine } = require('@voidpkg/scrapper');
Engine.google('Void Development', {
proxies: [
{
host: '0.0.0.0',
port: 8080,
auth?: {
username: 'clqu',
password: '123456'
}
}
]
}).then(console.log).catch(console.error);
/*
types: 0 = Search, 1 = Suggestions, 2 = Images
*/
Engine.google(query, options, type);
Engine.bing(query, options, type);
Engine.youtube(query, options);
Engine.wikipedia(query, options);
const { Google, Bing, YouTube, Wikipedia } = require('@voidpkg/scrapper');
const proxies = [
{
host: '0.0.0.0',
port: 8080,
auth?: {
username: 'clqu',
password: '123456'
}
}
];
const google = new Google({ proxies });
const bing = new Bing({ proxies });
const youtube = new YouTube({ proxies });
const wikipedia = new Wikipedia({ proxies });
// Search
google.search('Void Development').then(console.log).catch(console.error);
bing.search('Void Development').then(console.log).catch(console.error);
youtube.search('Void Development').then(console.log).catch(console.error);
wikipedia.get('Void Development').then(console.log).catch(console.error);
// Suggestions
google.suggestions('Void Development').then(console.log).catch(console.error);
bing.suggestions('Void Development').then(console.log).catch(console.error);
Name | State |
---|---|
Google Search | ✅ |
Google Suggestions | ✅ |
Google Images | ❌ |
Bing Search | ✅ |
Bing Suggestions | ✅ |
Bing Images | ❌ |
Wikipedia Search | ✅ |
YouTube Videos Search | ✅ |
Name | Required | Type | Default |
---|---|---|---|
mkt | ❌ | string | en-US |
page | ❌ | number | 1 |
perPage | ❌ | number | 10 |
safe | ❌ | off, active, high, medium, safeUndefined | off |
headers | ❌ | { [key: string]: any; } | undefined |
proxies | ❌ | proxy[] | undefined |
queries | ❌ | { [key: string]: any; } | undefined |
Name | Required | Type | Default |
---|---|---|---|
mkt | ❌ | string | en-US |
page | ❌ | number | 1 |
perPage | ❌ | number | 10 |
safe | ❌ | off, moderate, strict | off |
headers | ❌ | { [key: string]: any; } | undefined |
proxies | ❌ | proxy[] | undefined |
queries | ❌ | { [key: string]: any; } | undefined |
Name | Required | Type | Default |
---|---|---|---|
headers | ❌ | { [key: string]: any; } | undefined |
proxies | ❌ | proxy[] | undefined |
queries | ❌ | { [key: string]: any; } | undefined |
Name | Required | Type | Default |
---|---|---|---|
language | ❌ | string | en |
headers | ❌ | { [key: string]: any; } | undefined |
proxies | ❌ | proxy[] | undefined |
queries | ❌ | { [key: string]: any; } | undefined |
Name | Required | Type |
---|---|---|
host | ✅ | string |
port | ✅ | number |
auth | ❌ | { username: string; password: string; } |
FAQs
A simple search scrapper for Google, Bing, Wikipedia etc. for NodeJS
The npm package @voidpkg/scrapper receives a total of 1 weekly downloads. As such, @voidpkg/scrapper popularity was classified as not popular.
We found that @voidpkg/scrapper 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.