frida 16.7.19 → 17.0.1
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_binding.d.ts +1 -1
- 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 +1 -1
- package/subprojects/frida-core.wrap +1 -1
|
@@ -100,7 +100,7 @@ export class Device extends _Device {
|
|
|
100
100
|
attach(target: TargetProcess, options?: SessionOptions, cancellable?: Cancellable | null): Promise<Session>;
|
|
101
101
|
injectLibraryFile(target: TargetProcess, path: string, entrypoint: string, data: string, cancellable?: Cancellable | null): Promise<InjecteeID>;
|
|
102
102
|
injectLibraryBlob(target: TargetProcess, blob: Buffer, entrypoint: string, data: string, cancellable?: Cancellable | null): Promise<InjecteeID>;
|
|
103
|
-
openChannel(address: string, cancellable?: Cancellable | null): Promise<
|
|
103
|
+
openChannel(address: string, cancellable?: Cancellable | null): Promise<NodeJS.ReadWriteStream>;
|
|
104
104
|
readonly output: Signal<OutputHandler>;
|
|
105
105
|
readonly uninjected: Signal<UninjectedHandler>;
|
|
106
106
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -445,7 +445,7 @@ if (opts !== undefined) {
|
|
|
445
445
|
custom_logic="const pid = await this.#getPid(target, cancellable);",
|
|
446
446
|
),
|
|
447
447
|
"open_channel": MethodCustomizations(
|
|
448
|
-
return_typing=
|
|
448
|
+
return_typing="Promise<NodeJS.ReadWriteStream>",
|
|
449
449
|
return_wrapper="new IOStreamAdapter",
|
|
450
450
|
),
|
|
451
451
|
},
|