get_jsvmp_log
Retrieve and filter JSVMP interpreter execution logs for debugging JavaScript reverse engineering tasks. Filter by entry type, property names, or function calls to analyze execution patterns.
Instructions
Retrieve JSVMP interpreter execution log.
Args: type_filter: Filter by entry type: "api_call" or "prop_read". property_filter: Filter property read entries by property name substring. func_filter: Filter API call entries by function name substring. clear: If True, clear the log after retrieval. limit: Maximum entries to return (default 500).
Returns: dict with entries list, counts, and summary of accessed APIs/properties.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_filter | No | ||
| property_filter | No | ||
| func_filter | No | ||
| clear | No | ||
| limit | No |