All Projects → chandanbn → cvss

chandanbn / cvss

Licence: other
CVSS (Common Vulnerability Scoring System) Calculator CVSSv3.1

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to cvss

cvss-calculator
A Java library for calculating CVSSv2 and CVSSv3 scores and vectors
Stars: ✭ 27 (-22.86%)
Mutual labels:  cvss, cvssv3
Vulnogram
Vulnogram is a tool for creating and editing CVE information in CVE JSON format
Stars: ✭ 103 (+194.29%)
Mutual labels:  cvss, cvssv3
WarpPI
WarpPI Calculator, Step-by-step algebra calculator for Raspberry Pi. (abandoned project)
Stars: ✭ 93 (+165.71%)
Mutual labels:  calculator
react-calculator
📐 PWA React + Redux Calculator
Stars: ✭ 65 (+85.71%)
Mutual labels:  calculator
asm-docs
Documentation about native assembly programming on the TI CE calculators (84+CE / 83PCE)
Stars: ✭ 41 (+17.14%)
Mutual labels:  calculator
netcalc
Advanced network calculator and address planning helper
Stars: ✭ 20 (-42.86%)
Mutual labels:  calculator
SwiftUICalculator
A calculator app using SwiftUI which is introduced in WWDC19
Stars: ✭ 33 (-5.71%)
Mutual labels:  calculator
kalker
Kalker/kalk is a calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals
Stars: ✭ 1,237 (+3434.29%)
Mutual labels:  calculator
nano-id-cc
Nano ID collision calculator
Stars: ✭ 31 (-11.43%)
Mutual labels:  calculator
mathpad
Interactive scratchpad calculator for VS Code
Stars: ✭ 20 (-42.86%)
Mutual labels:  calculator
Love-Calculator
Let's Calculate love with real data. Love Calculator by Mohammed Cha
Stars: ✭ 54 (+54.29%)
Mutual labels:  calculator
attribute-depends-calculator
Automatically calculate a collection of depends attribute of ActiveRecord
Stars: ✭ 41 (+17.14%)
Mutual labels:  calculator
Kelvin
A powerful language for symbolic computation written in Swift.
Stars: ✭ 23 (-34.29%)
Mutual labels:  calculator
uniswapv3-calculator
An all-in-one platform for Uniswap liquidity providers (prev Uniswap Calculator)
Stars: ✭ 131 (+274.29%)
Mutual labels:  calculator
bc
some useful math functions for linux calculator bc
Stars: ✭ 18 (-48.57%)
Mutual labels:  calculator
shellmath
Yes, Virginia, you can do floating-point arithmetic in Bash!
Stars: ✭ 33 (-5.71%)
Mutual labels:  calculator
Calcu
CALCULADORAS
Stars: ✭ 22 (-37.14%)
Mutual labels:  calculator
availability-calculator
Calculate how much downtime should be permitted in your Service Level Agreement or Objective
Stars: ✭ 60 (+71.43%)
Mutual labels:  calculator
calculator
Calculator app designed for elementary OS
Stars: ✭ 73 (+108.57%)
Mutual labels:  calculator
DevHelpBox
we are creating this community so that other developers can get benefits of it.
Stars: ✭ 35 (+0%)
Mutual labels:  calculator

#CVSSjs

CVSS (Common Vulnerability Scoring System) Calculator

Standalone Calculator

CVSSjs Version 0.3.1 beta

Usage:

//include the cvss.js script 
<script src="http://cvssjs.github.io/cvssjs/cvss.js"></script>

craete an HTML element with an id for eg.,
<div id="cvssboard"/>

// create a new instance of CVSS calculator:
var c = new CVSS("cvssboard");

// create a new instance of CVSS calculator with some event handler callbacks
var c = new CVSS("cvssboard", {
            onchange: function() {....} //optional
            onsubmit: function() {....} //optional
            }
            
// set a vector
c.set('CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:L');

// it is also backwards compatible with CVSS v2 vectors, 
// buts only sets the parameters that can be set without ambiguity.
c.set('AV:L/AC:L/Au:N/C:P/I:P/A:C');

//get the value
c.get() returns an object like:
  {
    score: 4.3,
    vector: 'CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:L'
  }

Copyright (c) 2015-2019, Chandan B.N.

Copyright (c) 2019, FIRST.ORG, INC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].