[SECURITY] Improve SSRF checks, strict path check for well_known_path #503
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Docker Images (amd64/arm64) test' | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| buildx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Build AMD64 image | |
| id: docker_build_amd | |
| uses: docker/build-push-action@v5 | |
| with: | |
| push: false | |
| context: . | |
| platforms: linux/amd64 | |
| tags: opensecurity/mobile-security-framework-mobsf:latest | |
| - | |
| name: Build ARM64 image | |
| id: docker_build_arm | |
| uses: docker/build-push-action@v5 | |
| with: | |
| push: false | |
| context: . | |
| platforms: linux/arm64 | |
| tags: opensecurity/mobile-security-framework-mobsf:latest |