Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 2.18 KB

README.md

File metadata and controls

51 lines (40 loc) · 2.18 KB

SDET VIRTUOSO


SeleniumMobSFBuildScanner

Selenium and Mobile Security Framework (MobSF) Integration to make Continuous Static Build Analysis possible.

How to install MobSF in Docker

$ docker pull opensecurity/mobile-security-framework-mobsf
$ docker run -it -p 8000:8000 opensecurity/mobile-security-framework-mobsf:latest

or run this command instead:
$ docker-compose up -d

Then open your browser and navigate to http://localhost:8000/

How to Run Mobile Static Analysis with Maven

i.e Android Installer (.apk)
$ mvn clean test -Dtest=MobileStaticAnalysis -Durl="http://localhost:8000/" -Dpath="/Users/imostafa/Downloads/" -DbuildName="Security-Build.apk"
i.e iOS installer (.ipa)
$ mvn clean test -Dtest=MobileStaticAnalysis -Durl="http://localhost:8000/" -Dpath="/Users/imostafa/Downloads/" -DbuildName="Security-Build.ipa"

How to Run Mobile Static Analysis with Gradle

i.e Android Installer (.apk)
$ gradle clean test -Durl="http://localhost:8000/" -Dpath="/Users/imostafa/Downloads/" -DbuildName="Security-Build.apk"
i.e iOS installer (.ipa)
$ gradle clean test -Durl="http://localhost:8000/" -Dpath="/Users/imostafa/Downloads/" -DbuildName="Security-Build.ipa"

References