Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scanners/nmap/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: A Helm chart for the NMAP security Scanner that integrates with the
type: application
# version - gets automatically set to the secureCodeBox release version when the helm charts gets published
version: v3.1.0-alpha1
appVersion: "7.92-r2"
appVersion: "7.93-r1"
kubeVersion: ">=v1.11.0-0"
annotations:
# supported cpu architectures for which docker images for the scanner should be build
Expand Down
2 changes: 1 addition & 1 deletion scanners/nmap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Nmap"
category: "scanner"
type: "Network"
state: "released"
appVersion: "7.92-r2"
appVersion: "7.94-r0"
usecase: "Network discovery and security auditing"
---

Expand Down
2 changes: 1 addition & 1 deletion scanners/nmap/docs/README.DockerHub-Parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ You can find resources to help you get started on our [documentation website](ht

## Supported Tags
- `latest` (represents the latest stable release build)
- tagged releases, e.g. `7.92-r2`
- tagged releases, e.g. `7.94-r0`

## How to use this image
This `parser` image is intended to work in combination with the corresponding security scanner docker image to parse the `findings` results. For more information details please take a look at the documentation page: https://www.securecodebox.io/docs/scanners/Nmap.
Expand Down
2 changes: 1 addition & 1 deletion scanners/nmap/docs/README.DockerHub-Scanner.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ You can find resources to help you get started on our [documentation website](ht

## Supported Tags
- `latest` (represents the latest stable release build)
- tagged releases, e.g. `7.92-r2`
- tagged releases, e.g. `7.94-r0`

## How to use this image
This `scanner` image is intended to work in combination with the corresponding `parser` image to parse the scanner `findings` to generic secureCodeBox results. For more information details please take a look at the [project page][scb-docs] or [documentation page][https://www.securecodebox.io/docs/scanners/Nmap].
Expand Down
2 changes: 1 addition & 1 deletion scanners/nmap/scanner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.15
FROM alpine:3.18
ARG scannerVersion
RUN apk add --no-cache nmap=$scannerVersion nmap-scripts=$scannerVersion
RUN addgroup --system --gid 1001 nmap && adduser nmap --system --uid 1001 --ingroup nmap
Expand Down