pompelmi 0.29.1 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +171 -182
- package/dist/pompelmi.cjs +2 -2
- package/dist/pompelmi.cjs.map +1 -1
- package/dist/pompelmi.esm.js +2 -2
- package/dist/pompelmi.esm.js.map +1 -1
- package/dist/types/utils/threat-intelligence.d.ts +12 -1
- package/package.json +87 -36
package/dist/pompelmi.esm.js
CHANGED
|
@@ -43,7 +43,7 @@ function createPresetScanner(preset, opts = {}) {
|
|
|
43
43
|
});
|
|
44
44
|
scanners.push(binjaScanner);
|
|
45
45
|
}).catch(() => {
|
|
46
|
-
// Binary Ninja engine not available
|
|
46
|
+
// Binary Ninja engine not available - silently skip
|
|
47
47
|
});
|
|
48
48
|
}
|
|
49
49
|
catch {
|
|
@@ -63,7 +63,7 @@ function createPresetScanner(preset, opts = {}) {
|
|
|
63
63
|
});
|
|
64
64
|
scanners.push(ghidraScanner);
|
|
65
65
|
}).catch(() => {
|
|
66
|
-
// Ghidra engine not available
|
|
66
|
+
// Ghidra engine not available - silently skip
|
|
67
67
|
});
|
|
68
68
|
}
|
|
69
69
|
catch {
|