
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
frida-read-process-memory
Advanced tools
Stream the memory of a running process.
var frida = require('frida');
var Read = require('frida-read-process-memory');
var bytes = require('bytes');
var session = // frida process session
var reader = Read(session);
reader.on('total', function(t){
console.log('reading a total of %s', bytes(t));
});
reader.on('range', function(r){
console.log('reading %s (%s)', r.baseAddress, bytes(r.size));
});
reader.on('skip', function(r){
console.log('skip %s', r.baseAddress);
});
reader.on('progress', function(p){
console.log(
'read %s%',
Math.round(p.bytesRead/p.bytesTotal*100*100)/100
)
});
reader.on('end', function(){
session.detach();
});
reader.pipe(yourDestination);
Check example.js for a script that connects to a phone via USB and dumps the foremost application's memory to dump.out.
$ npm install frida-read-process-memory
Create a read stream streaming data from given session.
Called once with the total number of bytes to read.
Called when about to read a range.
Called when skipping a rance because of an access violation.
Called after successfully reading a range, with .bytesRead and .bytesTotal.
There is a race condition where process memory is remapped after the memory ranges are fetched, but before they're read. Memory not available anymore will simply be ignored.
MIT
FAQs
Stream the memory of a running process
The npm package frida-read-process-memory receives a total of 4 weekly downloads. As such, frida-read-process-memory popularity was classified as not popular.
We found that frida-read-process-memory 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
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.