Posts

Showing posts with the label security

🔐 Information Security scanning tools for iOS mobile app with jenkins

 Here's a detailed list of information security tools you can integrate into an iOS development pipeline using Jenkins , along with a sample Jenkins pipeline setup. 🔐 Security Tools for iOS with Jenkins Integration ✅ 1. Static Application Security Testing (SAST) MobSF (Mobile Security Framework) Scans IPA or source code (Swift/Obj-C) for vulnerabilities. CLI + REST API support for Jenkins. GitHub: MobSF SonarQube (with Swift rules) Analyzes Swift, Objective-C for bugs, code smells, and security issues. Requires SonarScanner for CLI integration. Supports plugins for security rules (e.g., OWASP top 10). Fortify / Checkmarx (Enterprise tools) Provide deep source code scanning for iOS projects. Can be integrated via Jenkins CLI or pipeline plugins. 🔄 2. Software Composition Analysis (SCA) OWASP Dependency-Check Scans for known CVEs in dependencies. Works best with CocoaPods or Swift Package Manager (via manual configuration)...

🔐 Information Security scanning tools for Android mobile app with jenkins

Integrating information security tools into an Android mobile app pipeline with Jenkins helps automate vulnerability detection, enforce security policies, and ensure secure builds. Here are some commonly used tools you can integrate into your Jenkins pipeline for Android app security: 🔐 1. Static Application Security Testing (SAST) These tools analyze your source code or APK for security flaws without executing the app. MobSF (Mobile Security Framework) Scans APKs for vulnerabilities, secrets, insecure permissions, etc. Jenkins Plugin/CLI support. Can be self-hosted. GitHub: https://github.com/MobSF/Mobile-Security-Framework-MobSF SonarQube with Security Rules SonarQube can be configured with Android-specific security rules (e.g., OWASP). Jenkins integration through SonarScanner. Detects code smells, vulnerabilities, and bugs. Checkmarx (Paid) Enterprise-grade SAST tool with Jenkins integration. Scans Java/Kotlin/Gradle files for security is...