aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/feed.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/feed.go')
-rw-r--r--internal/feed/feed.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/internal/feed/feed.go b/internal/feed/feed.go
index 40e385d..aa5fd08 100644
--- a/internal/feed/feed.go
+++ b/internal/feed/feed.go
@@ -21,39 +21,6 @@ const (
// TODO: parse cpe
-type V2AccessVector byte
-
-const (
- V2AVAdjacentNetwork V2AccessVector = iota
- V2AVLocal
- V2AVNetwork
-)
-
-// Unmarshal CVSS V2 access vector from JSON.
-func (me *V2AccessVector) UnmarshalJSON(b []byte) error {
- // decode string, check for error
- var s string
- if err := json.Unmarshal(b, &s); err != nil {
- return err
- }
-
- // check value
- switch s {
- case "ADJACENT_NETWORK":
- *me = V2AVAdjacentNetwork
- case "LOCAL":
- *me = V2AVLocal
- case "NETWORK":
- *me = V2AVNetwork
- default:
- // return error
- return fmt.Errorf("unknown CVSS v2 access vector: %s", s)
- }
-
- // return success
- return nil
-}
-
// CVSS V2 attack complexity
type AccessComplexity int