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.
Improved pbcopy/pbpaste for OSX
The standard pbcopy and pbpaste utilities can manipulate the plaintext clipboard but have no easy way of accessing the HTML pasteboard. This module and CLI tool provide a more convenient way to access the pasteboard from node.
With npm, global installation is easiest:
$ npm install -g pb
Depending on your system configuration, you may need to run as root:
$ sudo npm install -g pb
To get data from a specific pasteboard:
$ pb [type]
$ pb -m <type>
To set a specific pasteboard, be sure to pipe data into pb:
$ get_data | pb -s [type]
To list available pasteboards:
$ pb -l
For example, to grab the contents of the HTML pasteboard and put it on the plaintext pasteboard:
$ pb -m html | pb -s
From node, pb
exposes:
get(type)
: get pasteboard data from specified pasteboardset(type, data)
: set pasteboard data (overwrites other pasteboards)available()
: enumerate populated pasteboardsgettypes()
: enumerate available pasteboardsFor example, to grab the contents of the HTML pasteboard and put it on the plaintext pasteboard:
var pb = require('pb');
var HTMLOutput = pb.get('html');
var textOutput = pb.get();
NSStringPboardType
(plaintext)NSHTMLPboardType
(HTML)Please consult the attached LICENSE file for details. All rights not explicitly granted by the Apache 2.0 license are reserved by the Original Author.
FAQs
Interface to OSX Pasteboard
The npm package pb receives a total of 9 weekly downloads. As such, pb popularity was classified as not popular.
We found that pb 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.