-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add: CVSS 4.0 Calculator * Add: test for CvssV4Point0Calculator * Apply: review comments * Add: German translations
- Loading branch information
1 parent
5f0acf8
commit 3371ec5
Showing
13 changed files
with
988 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* SPDX-FileCopyrightText: 2024 Greenbone AG | ||
* | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
import PropTypes from 'prop-types'; | ||
import {useState, useEffect, useMemo} from 'react'; | ||
import _ from 'gmp/locale'; | ||
|
||
import { | ||
cvssConfigData, | ||
expectedMetricOptionsOrdered, | ||
} from 'web/pages/extras/cvssV4/cvssConfig'; | ||
|
||
import { | ||
processVector, | ||
calculateScoreSafely, | ||
removeUnusedMetrics, | ||
} from './utils'; | ||
|
||
import useUserSessionTimeout from 'web/utils/useUserSessionTimeout'; | ||
import FormGroup from 'web/components/form/formgroup'; | ||
import Layout from 'web/components/layout/layout'; | ||
import Section from 'web/components/section/section'; | ||
import CvssIcon from 'web/components/icon/cvssicon'; | ||
import SeverityBar from 'web/components/bar/severitybar'; | ||
import styled from 'styled-components'; | ||
import TextField from 'web/components/form/textfield'; | ||
import MetricsGroups from 'web/pages/extras/cvssV4/MetricsGroups'; | ||
|
||
const StyledTextField = styled(TextField)` | ||
width: 180px; | ||
`; | ||
|
||
const cvssV4Prefix = 'CVSS:4.0/'; | ||
|
||
const CvssV4Calculator = ({location}) => { | ||
const initialState = useMemo(() => { | ||
return expectedMetricOptionsOrdered.reduce((obj, item) => { | ||
obj[item[0]] = item[1]; | ||
return obj; | ||
}, {}); | ||
}, []); | ||
|
||
const [selectedOptions, setSelectedOptions] = useState(initialState); | ||
|
||
const [inputCVSSVector, setInputCVSSVector] = useState( | ||
`${cvssV4Prefix}${removeUnusedMetrics(selectedOptions)}`, | ||
); | ||
|
||
const [, renewSession] = useUserSessionTimeout(); | ||
|
||
const cvssVector = `${cvssV4Prefix}${removeUnusedMetrics(selectedOptions)}`; | ||
|
||
useEffect(() => { | ||
if (location?.query?.cvssVector?.includes(cvssV4Prefix)) { | ||
const newOptions = processVector(location.query.cvssVector); | ||
setSelectedOptions({...initialState, ...newOptions}); | ||
} | ||
|
||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [location]); | ||
|
||
const handleInputCVSSVectorChange = value => { | ||
setInputCVSSVector(value); | ||
|
||
const newOptions = processVector(value); | ||
setSelectedOptions({...initialState, ...newOptions}); | ||
|
||
renewSession(); | ||
}; | ||
|
||
const handleOptionChange = (value, name) => { | ||
const newOptions = {...selectedOptions, [name]: value}; | ||
|
||
setInputCVSSVector(`${cvssV4Prefix}${removeUnusedMetrics(newOptions)}`); | ||
setSelectedOptions(newOptions); | ||
|
||
renewSession(); | ||
}; | ||
|
||
const cvssScore = calculateScoreSafely(cvssVector); | ||
|
||
return ( | ||
<Layout flex="column" grow> | ||
<Section | ||
img={<CvssIcon size="large" />} | ||
title={_('CVSSv4 Score Calculator')} | ||
/> | ||
<h3>{_('From Metrics')}:</h3> | ||
<MetricsGroups | ||
cvssConfigData={cvssConfigData} | ||
selectedOptions={selectedOptions} | ||
handleOptionChange={handleOptionChange} | ||
/> | ||
<h3>{_('From Vector')}:</h3> | ||
<FormGroup title={`CVSS 4.0 ${_('Vector')}`}> | ||
<StyledTextField | ||
name="cvssVectorInput" | ||
value={inputCVSSVector} | ||
onChange={handleInputCVSSVectorChange} | ||
/> | ||
</FormGroup> | ||
|
||
<h3>{_('Results')}:</h3> | ||
<FormGroup title={`${_('CVSS Base Vector')}`}> | ||
<span>{cvssVector}</span> | ||
</FormGroup> | ||
<FormGroup title={_('Severity')}> | ||
<SeverityBar severity={cvssScore} /> | ||
</FormGroup> | ||
</Layout> | ||
); | ||
}; | ||
|
||
CvssV4Calculator.propTypes = { | ||
location: PropTypes.object.isRequired, | ||
}; | ||
|
||
export default CvssV4Calculator; |
Oops, something went wrong.