exploitme是一个国外的android安全测试环境,http://securitycompass.github.io/AndroidLabs/index.html,通过它可以学习一些基本的测试方法和思路
今天先来生成Base的apk:
1. 下载exploit-me的git代码:
git init git clone https://github.com/SecurityCompass/AndroidLabs.git
2. 然后下载Base分支并切换过去。
git branch -a git branch fetch origin Base git checkout Base git branch
3. 打开Eclipse,导入项目,生成apk。
a. 点击import,选择android的“Existing Android Code Into Workspace”
b. 点击“browse”,选择git下载的代码路径,然后选中该项目,并勾选“copy projects into workspace”。
c. 导入后有可能会报这个错“FalseSecureMobile] Android requires compiler compliance level 5.0 or 6.0. Found ‘1.7‘ instead. Please use Android Tools > Fix Project Propertity”
这个时候你就安装指示,右键项目,选中“Fix Project Propertity”
d. 然后就是导出apk文件了,“export”,选择android的“Export Android Application”。
选择密钥库
选择key
选择apk保存的路径:
好了,apk生成好了
android-exploitme(一):生成apk
时间: 2024-10-01 07:24:45