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.
FFmpeg-powered screen recording module for Node.js
Requires FFmpeg installed in the PATH
Currently supports Windows and Linux
Install module using npm install t-rec
Require the module
let Recorder = require('t-rec')
Recorder.Record(options)
- function
: returns Promise
Object
Integer
: The FPS at which the screen will be recordedString
: The path where the recorded video will be saved atObject
Integer
: Horizontal offset valueInteger
: Vertical offset valueInteger
: Width of the videoInteger
: Height of the videoExample Code:
Recorder.Record({
fps: 30,
output: 'output.mp4',
crop: {
x: 0,
y: 0,
width: 640,
height: 480
}
}).then((done) => {
console.log(done)
}).catch((err) => {
// ENOENT if FFmpeg is not installed
console.log(err)
})
FAQs
Record your desktop
The npm package t-rec receives a total of 3 weekly downloads. As such, t-rec popularity was classified as not popular.
We found that t-rec 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.