Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
adblock-plus-crx
Advanced tools
Adverts can slow and even break functional tests. If you run your functional tests using ChromeDriver you can install extensions like AdBlock-Plus as follows...
{
...
"desiredCapabilities": {
"javascriptEnabled": true,
"acceptSslCerts": true,
"browserName": "chrome",
"chromeOptions": {
"args": [ "no-sandbox" ],
"extensions": [ "Q3Iy....AAAA=" ]
}
}
...
}
Where Q3Iy....AAAA=
is the base64 encoded crx file you want to install. Unfortunately Adblock-Plus is around 600KB when encoded and not something you really want to include in a json file.
When using the excellent Nightwatch.js you can define configuration in nightwatch.conf.js
instead of json.
var adBlockPlus = require('adblock-plus-crx')
module.exports = {
...
"desiredCapabilities": {
"javascriptEnabled": true,
"acceptSslCerts": true,
"browserName": "chrome",
"chromeOptions": {
"args": [ "no-sandbox" ],
"extensions": [ adBlockPlus.base64() ]
}
}
...
}
AdBlock-Plus opens a new tab on first run and since WebDriver tests typically start with a fresh profile each run gets more than a little annoying. We've disabled first run behaviour by setting suppress_first_run_page
to true and recreating the crx.
./scripts/update.sh
./scripts/update.sh
from forks root directory - i.e. the one containing package.jsonIf you don't want to publish an alternative version of this package, I will consider pull requests for adblock-plus version updates and generally useful modifications, however the later should be done by amending ./scripts/update.sh
. I cannot accept changes to the crx file itself.
FAQs
Adblock-Plus crx base64 encoded binary for chromedriver
The npm package adblock-plus-crx receives a total of 3 weekly downloads. As such, adblock-plus-crx popularity was classified as not popular.
We found that adblock-plus-crx 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.