https://github.com/vdjagilev/owasp-risk-calculator
An attempt to create a basic OWASP Risk Calculator
https://github.com/vdjagilev/owasp-risk-calculator
calculator owasp risk risk-assessment security
Last synced: 7 months ago
JSON representation
An attempt to create a basic OWASP Risk Calculator
- Host: GitHub
- URL: https://github.com/vdjagilev/owasp-risk-calculator
- Owner: vdjagilev
- Created: 2023-06-25T21:27:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T19:38:17.000Z (over 1 year ago)
- Last Synced: 2024-06-22T11:42:13.646Z (over 1 year ago)
- Topics: calculator, owasp, risk, risk-assessment, security
- Language: TypeScript
- Homepage: https://vdjagilev.github.io/owasp-risk-calculator/
- Size: 826 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OWASP Risk Calculator
An honest attempt to create yet another OWASP risk calculator. This one also contains mitigation part, which is displayed on the radar chart below.
Inspired by [OWASP Risk Rating Methodology](https://owasp.org/www-community/OWASP_Risk_Rating_Methodology) and [OWASP Risk Rating Calculator](https://owasp-risk-rating.com/).
## Screenshots



## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.