Skip to content

Commit 986c85e

Browse files
committed
Update bundled Android Frida to v17.2.14
This provides lots of small improvements & bugfixes, most notably support for Android 16, and a fix for a common "Unexpected crash while trying to allocate memory" error
1 parent d1e2885 commit 986c85e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/interceptors/frida/frida-integration.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export interface FridaTarget {
3131
name: string;
3232
}
3333

34-
export const FRIDA_VERSION = '16.6.1';
34+
export const FRIDA_VERSION = '17.2.14';
3535

3636
export const FRIDA_DEFAULT_PORT = 27042;
3737
export const FRIDA_ALTERNATE_PORT = 24072; // Reversed to mildly inconvenience detection
@@ -41,10 +41,10 @@ export const FRIDA_BINARY_NAME = `adirf-server-${FRIDA_VERSION}`; // Reversed to
4141
// To update this, run `await require('frida-js').calculateFridaSRI({ version, arch, platform })`
4242
export const FRIDA_SRIS = {
4343
'android': {
44-
'arm': 'sha512-bLIDVOMwACFYC/tPkM2lsx7mdwLALnY1ScTqqAy+wkBD1kYPVx4LAF77hbIh49kotRyGll4FV2N0t3dD03I+OA==',
45-
'arm64': 'sha512-kPcOEHSceFdts1nnUz/Vjmf2igyayEgCHc+slapr6GjCX0nC83eO8Psq8IF1UnDFx32jrVVvjRzJzTe6P5a85g==',
46-
'x86': 'sha512-89IwpL5ki5nOU/sdjnQ7fItseUq1SpYr0HMMFKJMZzpfPQMNXFow5ps4l1ZpK/hdUFCVPHvxynhBc1ZTvcVDlQ==',
47-
'x86_64': 'sha512-KBBj09sceLT6Sar4aTxZ1dJaoalBJZ4DfnoTRPER5KVwIAplTwbUVJtsnSI1gSWPyELq9XjO6ZjsWKOaQC79gg=='
44+
'arm': 'sha512-LMjY+U0vtGg36QMCLTY6aJ6N8DSipBtsZcimj2HmYA9v+ANu4MsrHfccbCmp/caLDadCeZ51NtnL1EWZGJLi0w==',
45+
'arm64': 'sha512-Y0TrqHsv2eb4NApCzcDAKG4CjIih/LyysKokFCRDkcmvF5qbDJd5dvgXzm/ypFxcA/X0EpnAqZGYWWjfZJw7WQ==',
46+
'x86': 'sha512-DOvopRoAh+qfpgeIKpc+H4E8xURqy6YX8IrJO0iQB6aggOo+HyctS2caorNpuSQSbOqD3wmEmZoAd62RfqWPdw==',
47+
'x86_64': 'sha512-YzoBZvY9EXtk/kRmmqRVrkxXUUF9nU1g+Reu900DKylcArvtwoM8HEEc+t05bvnLWARq66uylIBzrCvMbpkr+Q=='
4848
}
4949
} as const;
5050

0 commit comments

Comments
 (0)