Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Nodejs-Tracer | Kitploit
Tools/GitHubGitHub/checkpointsw/nodejs-tracer
Dynamic Analysis (Sandboxing)IDS/IPS EvasionReverse EngineeringScripting & AutomationMalware AnalysisAnti-Bot
GitHubcheckpointsw/nodejs-tracer

Nodejs-Tracer

View Repository
8177 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

nodejs-tracer

Simple Node.jstracer that logs calls to core modules, can spoof certain calls to defeat anti-analysis, save files written by the application and more. Useful to analyze heavily obfuscated Node.js malware.

Usage

root@kitploit:~
node -r .\tracer.js main.js

Example trace with DISPLAY_STACK active:

Configuration

Adjust the constants in the script to configure the following options:

root@kitploit:~
const DISPLAY_STACK = true // Display stack trace for each call
const SAVE_FILE_WRITES = true // Save files written by the application to the current working directory
const LOG_HTTP_REQUESTS = true // Log HTTP requests to requests.txt
const SKIP_SLEEPS = false // Skip calls to sleep and timers
const TRACE_ERRORS = false // Log errors, caught and uncaught
const IGNORED_APIS = [] // List of APIs that won't be hooked (e.g. ['path.normalize'])

Depending on the malware you might need to adjust the anti-anti-VM interceptions on the top of the script.

Currently implements the following anti-anti-VM:

  • Spoofs CPU cores
  • Spoofs RAM
  • Returns empty on call to tasklist (if malware tries to enumerate running analysis tools)
  • Naively spoofs powershell and wmic output which surprisingly defeats a lot of anti-anti-VM based on e.g. powershell WMI queries
Download Tool