mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
Merge branch 'main' into sha-handling
This commit is contained in:
commit
1d1c5698da
16 changed files with 308 additions and 72 deletions
|
|
@ -3,7 +3,7 @@
|
|||
## Supported Go versions
|
||||
|
||||
We support the latest version and the one before
|
||||
the latest version of Go (currently 1.22 and 1.23).
|
||||
the latest version of Go (currently 1.23 and 1.24).
|
||||
|
||||
## Generated files
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
is a tool to validate local advisories files against the JSON Schema and an optional remote validator.
|
||||
|
||||
### Exit codes
|
||||
|
||||
If no fatal error occurs the program will exit with an exit code `n` with the following conditions:
|
||||
|
||||
- `n == 0`: all valid
|
||||
- `(n & 1) > 0`: a general error occurred, all other flags are unset (see logs for more information)
|
||||
- `(n & 2) > 0`: schema validation failed
|
||||
- `(n & 4) > 0`: no remote validator configured
|
||||
- `(n & 8) > 0`: failure in remote validation
|
||||
|
||||
### Usage
|
||||
|
||||
```
|
||||
|
|
|
|||
|
|
@ -5,7 +5,9 @@ calls it a *CSAF publisher*.
|
|||
|
||||
After manually downloading the advisories from such a publisher,
|
||||
the tools here can be used to offer the CSAF files for automated downloading
|
||||
as *CSAF aggregator*. (The construct is called *CSAF proxy provider*. See [Section 7.2.5](https://docs.oasis-open.org/csaf/csaf/v2.0/csaf-v2.0.html#725-role-csaf-aggregator) for more details.)
|
||||
as *CSAF aggregator*. (The construct is called *CSAF proxy provider*.
|
||||
See [Section 7.2.5](https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#725-role-csaf-aggregator)
|
||||
for more details.)
|
||||
|
||||
There are three necessary steps, easiest is to use
|
||||
one single virtual maschine (or container) per internal provider.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue