Skip to content

Commit d9c989d

Browse files
committed
(fix) move to macho-ts and frida-screenshot ts
1 parent e6db48b commit d9c989d

File tree

5 files changed

+38
-40
lines changed

5 files changed

+38
-40
lines changed

agent/package-lock.json

+26-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "0.0.0",
44
"description": "Runtime Mobile Exploration",
55
"private": true,
6+
"type": "module",
67
"main": "src/index.ts",
78
"scripts": {
89
"prepare": "npm run build",
@@ -31,7 +32,7 @@
3132
"frida-java-bridge": "^6",
3233
"frida-objc-bridge": "^7",
3334
"frida-screenshot": "^5",
34-
"macho": "^1"
35+
"macho-ts": "^0.1.0"
3536
},
3637
"devDependencies": {
3738
"@types/frida-gum": "^18",

agent/src/ios/binary.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// tslint:disable-next-line:no-var-requires
2-
const macho = require("macho");
1+
import macho from "macho-ts";
2+
33
import * as iosfilesystem from "./filesystem.js";
44
import { IBinaryModuleDictionary } from "./lib/interfaces.js";
55

agent/src/ios/userinterface.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// tslint:disable-next-line:no-var-requires
2-
const sc = require("frida-screenshot");
2+
import screenshot from "frida-screenshot";
33
import { colors as c } from "../lib/color.js";
44
import { IJob } from "../lib/interfaces.js";
55
import * as jobs from "../lib/jobs.js";
66

77

8-
export const screenshot = (): any => {
8+
export const take = (): any => {
99
// heavy lifting thanks to frida-screenshot!
1010
// https://github.com/nowsecure/frida-screenshot
11-
return sc();
11+
return screenshot(null);
1212
};
1313

1414
export const dump = (): string => {
@@ -131,7 +131,7 @@ export const biometricsBypass = (): void => {
131131
if (policyJob.invocations) {
132132
policyJob.invocations.push(lacontext1);
133133
} else {
134-
policyJob.invocations = [ lacontext1 ];
134+
policyJob.invocations = [lacontext1];
135135
}
136136
jobs.add(policyJob);
137137

@@ -193,7 +193,7 @@ export const biometricsBypass = (): void => {
193193
if (accessControlJob.invocations) {
194194
accessControlJob.invocations.push(lacontext2);
195195
} else {
196-
accessControlJob.invocations = [ lacontext2 ];
196+
accessControlJob.invocations = [lacontext2];
197197
}
198198
jobs.add(accessControlJob);
199199
};

agent/src/rpc/ios.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const ios = {
8080
// ios user interface
8181
iosUiAlert: (message: string): void => userinterface.alert(message),
8282
iosUiBiometricsBypass: (): void => userinterface.biometricsBypass(),
83-
iosUiScreenshot: (): any => userinterface.screenshot(),
83+
iosUiScreenshot: (): any => userinterface.take(),
8484
iosUiWindowDump: (): string => userinterface.dump(),
8585

8686
// ios ssl pinning
@@ -97,8 +97,8 @@ export const ios = {
9797
iosKeychainAdd: (account: string, service: string, data: string): boolean =>
9898
ioskeychain.add(account, service, data),
9999
iosKeychainRemove: (account: string, service: string): void => ioskeychain.remove(account, service),
100-
iosKeychainUpdate: (account: string, service: string, newData: string): void =>
101-
ioskeychain.update(account, service, newData),
100+
iosKeychainUpdate: (account: string, service: string, newData: string): void =>
101+
ioskeychain.update(account, service, newData),
102102
iosKeychainEmpty: (): void => ioskeychain.empty(),
103103
iosKeychainList: (smartDecode: boolean = false): IKeychainItem[] => ioskeychain.list(smartDecode),
104104
iosKeychainListRaw: (): void => ioskeychain.listRaw(),

0 commit comments

Comments
 (0)