blob: 9b503794f96d4ea858fc559c408dbca42e6025f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
diff --git a/mobsf/MobSF/init.py b/mobsf/MobSF/init.py
index 6ed1897..988a778 100644
--- a/mobsf/MobSF/init.py
+++ b/mobsf/MobSF/init.py
@@ -5,7 +5,6 @@ import random
import subprocess
import sys
import shutil
-import threading
from hashlib import sha256
from pathlib import Path
from importlib import (
@@ -13,7 +12,6 @@ from importlib import (
util,
)
-from mobsf.MobSF.tools_download import install_jadx
from mobsf.install.windows.setup import windows_config_local
logger = logging.getLogger(__name__)
@@ -47,12 +45,6 @@ def first_run(secret_file, base_dir, mobsf_home):
# Run Once
make_migrations(base_dir)
migrate(base_dir)
- # Install JADX
- thread = threading.Thread(
- target=install_jadx,
- name='install_jadx',
- args=(mobsf_home.as_posix(),))
- thread.start()
# Windows Setup
windows_config_local(mobsf_home.as_posix())
return secret_key
|