
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A node module which simulates mouse and keyboard input, and take screenshots.
$ npm install autorobo
See requirements for: https://github.com/joeferner/node-java
var robo = require("autorobo");
// move the mouse to coordinates
robo.mouse.move(100, 400);
// click left mouse
robo.mouse.click(robo.mouse.left);
// click and hold right mouse for 1 second
robo.mouse.click(robo.mouse.right, 1000);
// press middle mouse, move, and release.
robo.mouse.press(robo.mouse.middle);
robo.mouse.move(150, 400);
robo.mouse.release(robo.mouse.middile);
// perform a keystroke
// (http://docs.oracle.com/javase/7/docs/api/java/awt/event/KeyEvent.html#field_summary)
robo.key.stroke(robo.key.VK_PAGE_DOWN);
// hold a key for 1 second
robo.key.press(robo.key.VK_W);
robo.sleep(1000);
robo.key.release(robo.key.VK_W);
// get the screen size
var size = robo.screen.size();
console.log(size.width, size.height);
// save a screenshot to file
robo.screen.capture("photo.png");
// save a region of the screen starting at (20, 20), with a size of (50, 50)
robo.screen.capture("photo.png", robo.screen.rect(20, 20, 50, 50));
// Get the color of a pixel
console.log(robo.screen.pixel(40, 40)); // > { r: 0, b: 20, g: 255 }
FAQs
simulate mouse and keyboard input, take/save screenshots
We found that autorobo 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.