Window 로컬에서 설치
공식 문서 : https://mobsf.github.io/docs/#/
가상 환경 생성
- python 버전 : 3.10 이상
conda create -n 가상환경명 python==3.10
- 가상 환경 활성화
conda activate mobSF
MobSF Clone
https://github.com/MobSF/Mobile-Security-Framework-MobSF
git clone https://github.com/MobSF/Mobile-Security-Framework-MobSF.git
Settings.py 파일 내 JAVA 경로 수정
JAVA_DIRECTORY = '자바 설치 경로'
Python 라이브러리 설치
1. Django 설치
conda install -c conda-forge Django
2. MobSF 설정
1) setup.bat
- OpenSSL 오류 - 안내 받은 페이지로 접속하여 설치
Win32/Win64 OpenSSL Installer for Windows - Shining Light Productions
Minimum system requirements: Windows XP or later 32MB RAM 200MHz CPU 30MB hard drive space Recommended system requirements: Windows XP or later 128MB RAM 500MHz CPU 300MB hard drive space April 11, 2024 - OpenSSL 3.3 is available. Users should currently in
slproweb.com
- Microsoft Visual C++ 오류 : 안내 받은 페이지로 접속하여 설치
Visual Studio를 다운로드해 주셔서 감사합니다. - Visual Studio
Visual Studio는 기본적으로 제공되는 Python 개발 및 데이터 과학 워크로드를 통한 Python 언어에 대한 강력한 IDE입니다. Python은 많은 무료 라이브러리가 포함된 인기가 있고 배우기 쉬운 무료 프로
visualstudio.microsoft.com
오류 발생하는 파일 설치 후 setup.bat 다시 실행
# Unable to configure formatter 'color'
pip install colorlog
# No module named 'distro'
pip install distro
# No module named 'psutill'
pip install psutil
# No module named 'IP2Location'
pip install IP2Location
# No module named 'brake'
pip install django-brake
# No module named 'biplist'
pip install biplist
# No module named 'shelljob'
pip install shelljob
# No module named 'frida'
pip install frida
# No module named 'tldextract'
pip install tldextract
# No module named 'paramiko'
pip install paramiko
이 외 설치 필요한 파일은 requirements.txt 참고
2) requirements.txt 설치
pip install -r requirements.txt
MobSF 실행
1. run.bat
'보안 > Android App' 카테고리의 다른 글
Ghidra 설치 방법 (0) | 2024.06.04 |
---|---|
Strings 다운로드 (0) | 2024.05.20 |
FRIDA 설치 및 사용법 (0) | 2024.02.22 |
SAMSUNG 공식 펌웨어 다운로드 (5) | 2024.01.28 |
안드로이드 기기 루팅하기 - 갤럭시 Tab S6 Wifi(TWRP, Magisk) (0) | 2024.01.28 |