Scallop is a multi-tool for unpacking, repacking, and script stomping nodejs single executable applications (SEA)s.
Project description
Scallop: The Node SEA Swiss Army Knife
Scallop is a multi-tool for unpacking, repacking, and script stomping nodejs single executable applications (SEA)s.
The project serves source code recovery, malware analysis, red-teaming, and SEA internals exploration.
Compatibility Matrix
| OS | Node Version | Unpack | Repack | Stomp | Repack Asset |
|---|---|---|---|---|---|
| Windows | 23 | ✅ | ✅ | ✅ | ✅ |
| Windows | 22 | ✅ | ✅ | ✅ | ✅ |
| Linux | 23 | ✅ | ✅ | ✅ | ✅ |
| Linux | 22 | ✅ | ✅ | ✅ | ✅ |
| MacOS¹ | 23 | ✅ | ✅ | ✅ | ✅ |
| MacOS¹ | 22 | ✅ | ✅ | ✅ | ✅ |
¹ On MacOS, repacked binaries will not execute unless they are re-codesigned or manually excluded from codesigning.
Installation
pip install node-sea-scallop
scallop --help
Modes of Operation
Unpack
Unpack extracts:
- 🤖 The main javascript bundle from the binary's embedded SEA blob
- 💾 The main code cache (if it exists) from the binary's embedded SEA blob
- 🖼️ The embedded assets (if they exist) from the binary's embedded SEA blob
- 🥩 The raw SEA blob
scallop unpack <target_sea_binary>
Important Notes:
- Output is created in the same directory as
target_sea_binaryunder<target_sea_binary>_unpacked/
Repack Main Code Resource (without stomping)
Repack replaces the main javascript bundle (or snapshot) with a file of your choosing.
scallop repack <target_sea_binary> <replacement_js_file_or_v8_snapshot>
Important Notes:
- Content is repacked in-place.
- The Code cache is cleared by default when using this configuration.
- If your SEA is code signed, repacking will make the signature invalid. You'll need to be able to resign the binary to make it valid. If your SEA is not codesigned, everything will work as expected.
Repack Main Code Resource (script stomped)
Repack replaces the main javascript bundle (or snapshot) with a file of your choosing. The script is stomped by the code cache.
scallop repack <target_sea_binary> <replacement_js_file_or_v8_snaphot> --stomp
Important Notes:
- Content is repacked in-place.
- The Code cache is NOT cleared when using this configuration, and will be executed preferentially.
- The code cache's
kSourceHashis recalculated to allow v8'sSanityCheckJustSourcecheck to pass.
- The code cache's
- The target binary must have a code cache to be stompable.
- If your SEA is code signed, repacking will make the signature invalid. You'll need to be able to resign the binary to make it valid. If your SEA is not codesigned, everything will work as expected.
Footnote: A Few Words on Script Stomping 🥾
nodejs stores main code resources as either a plaintext string or a near-plaintext V8 snapshot inside its SEA blob. Along side the code, there is an optional bytecode cache that can be used to speed up compilation and execution. Assuming source and bytecode pass sanity checks the bytecode will be used preferentially to the main code resource for execution.
By keeping the bytecode cache intact and replacing the main code resource, a desynchronization between source and bytecode is created. This allows a SEA to disguise the true intent of its main code resource, and stealth its logic behind a harder-to-reverse-engineer serialized v8 bytecode blob.
The implications are not altogether that different than the classic VBA/P-code Stomp: https://attack.mitre.org/techniques/T1564/007/
I personally have used script stomped node SEAs as a very effective C2 implant delivery mechanism during red-team engagements. EDRs are not yet well clued into script stomping in SEAs.
Repack Asset
Repack asset replaces a specific asset with a file of your choosing, creating it if it does not exist.
scallop repack-asset <target_sea_binary> <replacement_asset_name> <replacement_asset_file>
Important Notes:
- Content is repacked in-place.
- The Code cache is cleared by default when using this configuration.
- If your SEA is code signed, repacking will make the signature invalid. You'll need to be able to resign the binary to make it valid. If your SEA is not codesigned, everything will work as expected.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file node_sea_scallop-0.1.2.tar.gz.
File metadata
- Download URL: node_sea_scallop-0.1.2.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.3 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c0b500401294a0c2749a22a68ee152ce52c92410a44d934da8640e3caee3688
|
|
| MD5 |
74a4c40262eff5c09c3c1528f5ea3fef
|
|
| BLAKE2b-256 |
b765a2e2431026b186ce8746c8938f2e0a73e216fe17cd461420a120ddfc942d
|
File details
Details for the file node_sea_scallop-0.1.2-py3-none-any.whl.
File metadata
- Download URL: node_sea_scallop-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.3 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f623e0a1f6359696076b86589353ba89274d74740dd33972095a75acae86e7bd
|
|
| MD5 |
79a3ca45e49b4e64f39a85b39ab3eb2d
|
|
| BLAKE2b-256 |
9bc59050897ac3ce035417a9c569eb9122747b7a8db7dd9c5f91b7731345fa42
|