microsoft / CSEDevOps

Azure DevOps extensions from CSE DevOps team
MIT License
24 stars 10 forks source link

Only arm64 images available #47

Open twartonick opened 2 months ago

twartonick commented 2 months ago

Using Microsoft Hosted Azure agent ubuntu-latest getting following error:

Status: Downloaded newer image for owasp/zap2docker-stable:latest WARNING: The requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64/v4) and no specific platform was requested exec /zap/zap-full-scan.py: exec format error

When I go to https://hub.docker.com/r/owasp/zap2docker-stable/tags?page=&page_size=&name=&ordering=last_updated I see only arm64 images, did stop building amd64 images? I have many, many pipelines that use the scanner and this will be close to breaking lots o' things.

edit: I did find that there is a owasp/zap2docker-bare that is amd64 image, and I tried to pin the image using "inputs: version: "owasp/zap2docker-bare:latest" in the task inputs, but it still grabbed the arm64 version (stable-latest), is there a way to specify which image to download/use in the task?

pipeline code:

Thank you in advance for any help!

superjulius commented 2 months ago

There is no way to specify the image to use :-(

And ZAP announced that they were moving away from OWASP organization and the official ZAP Docker images are now published to the Software Security Project Docker Hub Organisation

Can we expect an update of the very useful DevOps task ?

Or do we need to plan and move to something else?

See also https://github.com/zaproxy/zaproxy/issues/8440

twartonick commented 2 months ago

Here's my work-around/replacement, bash to the rescue as always, hope someone finds it useful...

Test owasp task replacement

jobs:

ghs commented 2 weeks ago

Would be easier to have the task giving the possibility to specify which image to use...