
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
monster-drift
Advanced tools
📻🏎 Drive a remote controlled drift car with Node.js and HackRF. This is beta software.
Contributions are welcome! Add your own tricks and manoeuvres and make a Pull Request 🤕🙈✌️
npm install monster-drift --save
Drive forward for one seconds and stop:
var drive = require('monster-drift')()
drive.forward()
setTimeout(function () {
drive.stop()
}, 1000)
var drive = new MonsterDrift([options])This module exposes a MonsterDrift object that you can initiate to get
a drive object.
Options:
stop - Milliseconds in which to automatically stop the card if no
drive commands have been issued (default: never)freq - The frequency in Hz (default: 27MHz)id - The HackRF device id to use (default: 0)gain - The HackRF TX gain (default: 40)drive.forward()Drive forward.
drive.backward()Drive backward.
drive.left()Turn wheels left.
drive.right()Turn wheels right.
drive.forwardRight()Drive forward and right.
drive.forwardLeft()Drive forward and left.
drive.backwardRight()Drive backward and turn right.
drive.backwardLeft()Drive backward and turn left.
drive.stop([callback])Stop the car and turn off transmitter. Calls optional callback when
done.
drive.close([callback])Stop the car, turn off transmitter and close the HackRF USB connection.
Calls optional callback when done.
drive.turn180([callback])Make a 180. Calls callback when done.
drive.batch(commands[, callback])Issue a series of driving commands to the car and call optional
callback when done.
The commands argument is an array of commands. Each command is a
double tuple with the following format: [function, duration]. The
function part is a drive function, e.g. drive.forward, and the
duration part is the number of milliseconds to perform the operation.
If the last tuple contains a duration then drive.stop will be called
automatically. Leave out duratuon to continue forever.
// make a 180
drive.batch([
[drive.forward, 1000],
[drive.right, 125],
[drive.backwardLeft, 100],
[drive.backward]
])
MIT
FAQs
Drive a radio controlled car with Node.js and HackRF
We found that monster-drift demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.