frida 17.2.8 → 17.2.9
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/build/src/frida.js +4 -0
- package/package.json +1 -1
- package/src/frida_bindgen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/__main__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/cli.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/codegen.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/customization.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/loader.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/model.cpython-312.pyc +0 -0
- package/src/frida_bindgen/customization.py +5 -0
- package/subprojects/frida-core.wrap +1 -1
package/build/src/frida.js
CHANGED
|
@@ -484,6 +484,10 @@ export const LogLevel = binding.LogLevel;
|
|
|
484
484
|
if (cwd !== undefined) {
|
|
485
485
|
options.cwd = cwd;
|
|
486
486
|
}
|
|
487
|
+
const stdio = opts.stdio;
|
|
488
|
+
if (stdio !== undefined) {
|
|
489
|
+
options.stdio = stdio;
|
|
490
|
+
}
|
|
487
491
|
options.aux = Object.fromEntries(Object.entries(opts).filter(([k, v]) => !STANDARD_SPAWN_OPTION_NAMES.has(k)));
|
|
488
492
|
}
|
|
489
493
|
const result = await this._spawn(program, options, cancellable);
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -388,6 +388,11 @@ if (opts !== undefined) {
|
|
|
388
388
|
options.cwd = cwd;
|
|
389
389
|
}
|
|
390
390
|
|
|
391
|
+
const stdio = opts.stdio;
|
|
392
|
+
if (stdio !== undefined) {
|
|
393
|
+
options.stdio = stdio;
|
|
394
|
+
}
|
|
395
|
+
|
|
391
396
|
options.aux = Object.fromEntries(Object.entries(opts).filter(([k, v]) => !STANDARD_SPAWN_OPTION_NAMES.has(k)));
|
|
392
397
|
}
|
|
393
398
|
""",
|