■ El problema
■ The problem
Cierto software lista los procesos activos de tu equipo y compara cada nombre
contra una lista negra: tu navegador, tu editor, tus herramientas de seguridad,
tu control remoto, si estás en una máquina virtual. No calcula hashes, no verifica
firmas, no analiza memoria. Solo compara cadenas de texto.
Some software lists the active processes on your machine and matches every name
against a blacklist: your browser, your editor, your security tools, your remote
desktop, whether you run inside a VM. It computes no hashes, verifies no
signatures, inspects no memory. It just compares text strings.
// así te detectan
const banned = bannedPrograms.map(n => n.toLowerCase());
processes.forEach(p => {
if (banned.includes(p.name.toLowerCase())) {
// DETECTADO
}
});
// this is how they spot you
const banned = bannedPrograms.map(n => n.toLowerCase());
processes.forEach(p => {
if (banned.includes(p.name.toLowerCase())) {
// DETECTED
}
});