
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Automate VoiceOver for testing web applications.
$ npm install -g auto-vo
Running the cli outputs the phrases spoken by the screen reader to stdout.
$ npx auto-vo --url https://example.com --limit 5 --until 'Example'
--url URL
- where URL is the url to test
--limit n
- where n is the maximum number of cursor moves
--until s
- where s is a search term, after which the script ends. supercedes --limit
.
--quiet
- do not print to stdout
$ npm install --save-dev auto-vo
import { run } from 'auto-vo';
(async function() {
const options = { url: "https://www.example.com", limit: 10, until: 'Example' };
const announcements = await run(options);
console.log(announcements);
})();
Using mocha/chai:
import { run } from 'auto-vo';
import { expect } from 'chai';
describe('loading example.com', async () => {
it('returns announcements', async () => {
const options = { url: "https://www.example.com", limit: 10, until: 'Example', quiet: true };
const announcements = await run(options);
expect(announcements).to.include.members(["Example Domain web content"]);
}).timeout(5000);
});
FAQs
Automated VoiceOver macOS screen reader runner.
The npm package auto-vo receives a total of 1 weekly downloads. As such, auto-vo popularity was classified as not popular.
We found that auto-vo 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.