diff --git a/extractor/script.js b/extractor/script.js index 043c440..e22d03c 100644 --- a/extractor/script.js +++ b/extractor/script.js @@ -76,6 +76,8 @@ const hookLibrary = (name) => { let hookedCount = 0; functions.forEach((func) => { + if (func.type !== 'function') return; + const funcName = func.name; const funcAddr = func.address;