Skip to content

Commit d1cd5b7

Browse files
committed
Merge branch 'release/1.0.3'
2 parents 8d077e7 + 53937d8 commit d1cd5b7

3 files changed

Lines changed: 88 additions & 155 deletions

File tree

package-lock.json

Lines changed: 71 additions & 154 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "droidground",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"type": "module",
55
"author": "Angelo Delicato",
66
"scripts": {
@@ -106,5 +106,9 @@
106106
"vite": "^6.3.3",
107107
"vite-tsconfig-paths": "^5.1.4",
108108
"zx": "^8.5.4"
109+
},
110+
"overrides": {
111+
"file-type": "^21.3.2",
112+
"yauzl": "^3.2.1"
109113
}
110114
}

src/server/utils/frida.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { libraryFile, resourceFile, resourcesDir, safeFileExists } from "@server
1111
import Logger from "@shared/logger";
1212
import { DEFAULT_UPLOAD_FOLDER, RESOURCES } from "@server/config";
1313
import { ManagerSingleton } from "@server/manager";
14+
import { sleep } from "@shared/helpers";
1415

1516
const require = createRequire(import.meta.url);
1617

@@ -108,6 +109,17 @@ export const loadFridaLibrary = async (): Promise<FridaLibrary> => {
108109
};
109110

110111
export const setupFrida = async () => {
112+
Logger.warn(`
113+
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
114+
┃ Frida Server mode is enabled ┃
115+
┃ ┃
116+
┃ This mode is powerful, but less isolated than Gadget mode. ┃
117+
┃ Make sure you understand the security implications before ┃
118+
┃ continuing. Use it only on devices and environments you trust. ┃
119+
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
120+
`);
121+
await sleep(5000);
122+
111123
Logger.info("Downloading Frida Server for the attached device");
112124
const singleton = ManagerSingleton.getInstance();
113125
const adb = await singleton.getAdb();

0 commit comments

Comments
 (0)