
Research
/Security News
Intercom’s npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
@apify/google-extractors
Advanced tools
Parses detailed data from Google Search Result Page (SERP) HTML.
const httpRequest = require('@apify/http-request');
const { extractResults } = require('@apify/google-extractors');
(async () => {
// Obtain Google results HTML with desktop or mobile user agent using your favourite HTTP client
const response = await httpRequest({
url: 'https://www.google.com/search?q=web+scraping',
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36',
},
});
const html = response.body;
const data = extractResults(html, { mobile: false });
// print organic results
console.dir(data.organicResults, { depth: null, colors: true });
// print paid results
console.dir(data.paidResults, { depth: null, colors: true });
})();
The output format is the same as for Google Search Results Scraper actor provided by Apify.
2022-01-31 (1.2.2)
csvFriendlyOutput optionwww. on domains
2022-01-21 (1.2.2)date field
2021-01-19 (1.2.0)emphasizedKeywords field for each organic result
2020-11-19FAQs
Extractors for paid and organic results from Google Search.
The npm package @apify/google-extractors receives a total of 33 weekly downloads. As such, @apify/google-extractors popularity was classified as not popular.
We found that @apify/google-extractors demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers 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
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.