侧边栏壁纸
博主头像
fynn博主等级

我们应该有恒心,尤其是要有自信心,必须相信自己是有能力的,而且要不惜任何代价把这种能力发挥出来。

  • 累计撰写 51 篇文章
  • 累计创建 21 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

MobSF扫描APP漏洞平台安装

fynn
2023-06-13 / 0 评论 / 0 点赞 / 315 阅读 / 210 字 / 正在检测是否收录...

地址

https://github.com/MobSF/Mobile-Security-Framework-MobSF

中文手册

https://mobsf.github.io/docs/#/zh-cn/

Linux 安装方式

安装java8

  • 我这里用的Fedora系统
dnf install -y java-1.8.0-openjdk-src wkhtmltopdf

安装python3.10

创建虚拟环境

  • 进入MobSF目录
python3.10 -m pip install virtualenv
python3.10 -m virtualenv venv
chmod +x venv/bin/activate
source venv/bin/activate

安装依赖库

pip install whitenoise colorlog distro IP2Location androguard oscrypto libsast django
pip install -U ruamel-yaml --ignore-installed ruamel-yaml
pip install -U PyYAML --ignore-installed PyYAML
pip install google_play_scraper biplist macholib rsa shelljob frida pyopenssl 
pip install psutil  tldextract bs4 lief openstep_parser gunicorn http_tools asgiref

执行初始化

python manage.py migrate StaticAnalyzer
python manage.py makemigrations StaticAnalyzer

安装

sh setup.sh

运行

sh run.sh

创建服务

vim /usr/lib/systemd/system/mobsf.service
[Unit]
Description=MobSF Server

[Service]
WorkingDirectory=/root/MobSF/
ExecStart=sh run.sh
Restart=always

[Install]
WantedBy=multi-user.target

开机启动

systemctl daemon-reload
systemctl enable mobsf
systemctl start mobsf
0

评论区