Skip to content

Commit 86ee52e

Browse files
authored
Merge pull request #10 from Matej4545/update-to-v5
Update to ASVS v5
2 parents 862af75 + fe6ed19 commit 86ee52e

4 files changed

Lines changed: 2788 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# OWASP ASVS Serviteur
22

33
![image](./public/asvs-serviteur.svg)
4-
Simple UI for using OWASP ASVS framework to evaluate project or application security state. It has bundled [ASVS v4.0.3](https://github.com/OWASP/ASVS/releases/tag/v4.0.3_release) which is current latest release.
4+
Simple UI for using OWASP ASVS framework to evaluate project or application security state. It has bundled [ASVS v5.0.0](https://github.com/OWASP/ASVS/releases/tag/v5.0.0) which is the latest release.
55

66
## Usage
77

8-
Whole code is frontend only which means _no data are send outside your local browser_. However it also means that progress is not stored remotely, only in local storage. Currently it support only 1 project at a time, but can be easily extended for multiple project support using different `localStorage` keys or storage format.
8+
Whole code is frontend only which means _no data are send outside your local browser_. However it also means that progress is not stored remotely, only in local storage. Currently it support only 1 project at a time, but can be easily extended for multiple project support using different `localStorage` keys or storage format.
99

1010
Start by creating new project and setting target ASVS level. Then you can start filling the audit for your project. When you are finished, generate report using "scroll" icon in top navbar.
1111

1212
## Contributing
1313

1414
This repo is built using Typescript and React, with [Vite](https://vite.dev/guide/) used as dev server and builder.
1515

16-
Simply start by clonning this repo and running `npm install` in the root of this project. Then start development server using `npm run dev` or export static javascript using `npm run build`.
16+
Simply start by clonning this repo and running `npm install` in the root of this project. Then start development server using `npm run dev` or export static javascript using `npm run build`.

src/components/navbar/navbar.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ function Navbar() {
1919
style={{ color: "red" }}
2020
/>
2121
<h1>OWASP ASVS Serviteur</h1>
22+
<a href="https://github.com/OWASP/ASVS/tree/master/5.0">
23+
{" "}
24+
<span className=" ml-4 text-xs text-slate-500">
25+
Using ASVS v5.0.0
26+
</span>
27+
</a>
2228
</a>
2329
{data && (
2430
<>

0 commit comments

Comments
 (0)