Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Stream events from DualShock 4 controllers. Works for Bluetooth & USB.
Supports:
Compared to the DS3 the DS4 dropped most pressure sensitive buttons. Only L2 and R2 are still also analog. PEW PEW! I guess someone had to make room for the trackpad...
TODO:
$ npm install -g ds4
$ ds4-dump
Will dump decoded events to stdout.
var ds4 = require('ds4');
var through = require('through');
// controller is a node-hid HID object representing the controller
hid.pipe(through(ds4.parseDS4HIDData)).pipe(process.stdout);
Example output frame:
{ leftAnalogX: 128,
leftAnalogY: 128,
rightAnalogX: 127,
rightAnalogY: 127,
l2Analog: 0,
r2Analog: 0,
dPadUp: false,
dPadRight: false,
dPadDown: false,
dPadLeft: false,
cross: false,
circle: false,
square: false,
triangle: false,
l1: false,
l2: false,
r1: false,
r2: false,
l3: false,
r3: false,
share: false,
options: false,
trackPadButton: false,
psButton: false,
motionY: 0,
motionX: 1,
motionZ: -2,
orientationRoll: -145,
orientationYaw: 8155,
orientationPitch: 2089,
trackPadTouch0Id: 4,
trackPadTouch0Active: false,
trackPadTouch0X: 1513,
trackPadTouch0Y: 40,
trackPadTouch1Id: 0,
trackPadTouch1Active: false,
trackPadTouch1X: 0,
trackPadTouch1Y: 0,
timestamp: 36,
batteryLevel: 0 }
Emitting data:
var ds4 = require('ds4');
ds4.emit(hid, {
rumbleRight: 0, // 0 ... 255
rumbleLeft: 0, // 0 ... 255
r: 0, // 0 ... 255
g: 0, // 0 ... 255
b: 0, // 0 ... 255
flashOn: 0, // 0 ... 255 (flash on duration)
flashOff: 0 // 0 ... 255 (flash off duration)
});
As long as this is pre 1.0 I'll rename property names.
¯\_(ツ)_/¯
MIT
FAQs
Stream events from DualShock 4 controllers
We found that ds4 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.