
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
textractor-wrapper
Advanced tools
Textractor wrapper for Node.js. Extracts text from video games and visual novels.
Textractor wrapper for Node.js.
Textractor (a.k.a. NextHooker) is an open-source x86/x64 text hooker for Windows/Wine based off of ITHVNR.
const Textractor = require("textractor").Textractor;
let t = new Textractor("X:/path/to/TextractorCLI.exe");
t.on("output", output => {
console.log(`[${output.handle}]: ${output.text}`);
});
t.start();
t.attach(PID);
The constructor.
path - Path to TextractorCLI.exeStart Textractor process.
Attach text hooker to a specific process.
pid - Process IDDetach text hooker to a specific process.
pid - Process IDInject a hook into a specific process.
Supports /H hook code and /R read code.
pid - Process IDSpecify callback function when text outputs.
event - Must be "output"listener - The callback function{
handle: number; // hook index
pid: number; // process ID
addr: number; // hook address
ctx: number; // hook context
ctx2: number; // hook context 2
name: string; // hook name
code: string; // hook code
text: string; // output text
}
Execute a command manually.
command - The command to executeStop Textractor process.
MIT
FAQs
Textractor wrapper for Node.js. Extracts text from video games and visual novels.
The npm package textractor-wrapper receives a total of 14 weekly downloads. As such, textractor-wrapper popularity was classified as not popular.
We found that textractor-wrapper 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.