Skip to content

Commit

Permalink
Improve status column
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Oelgart committed Apr 3, 2019
1 parent 695aaf2 commit be50680
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Binary file modified ASVS_v4.0_Checklist.ods
Binary file not shown.
Binary file modified ASVS_v4.0_Checklist.xlsx
Binary file not shown.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
🔐 OWASP ASVS 4.0 Checklist
===========================

Checklist for [OWASP's ASVS v4.0](https://www.owasp.org/index.php/Category:OWASP_Application_Security_Verification_Standard_Project)
Checklist for OWASP's [Application Security Verification Standard 4.0](https://www.owasp.org/index.php/Category:OWASP_Application_Security_Verification_Standard_Project)

Usage
=====
It's probably easiest if you copy [this Google Docs file](https://docs.google.com/spreadsheets/d/11BNnfM8ImoL7PolLTgPch7xfdQDYTRfELbnayfZLDNI) to your own drive and work from there.

Alternatively, you may download one of these files:
Expand All @@ -13,10 +15,10 @@ Alternatively, you may download one of these files:

![screenshot](resources/screenshot2.png)

Usage
=====
Script Usage
============

If you need to re-parse the CSV into individual files for easier usage, run this:
You most likely won't need this. But if you need to re-parse the CSV into individual files for easier usage, run this:

```shell
$ ./parse_csv resources/OWASP_Application_Security_Verification_Standard_4.0-en.csv
Expand Down
4 changes: 2 additions & 2 deletions macros/onEdit.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
function onEdit(event) {
var isApplicableRow = 6;
var isApplicableRow = 5;
var tableRange = "A2:H200";

var sheet = SpreadsheetApp.getActiveSpreadsheet();
var editedCell = sheet.getActiveCell();

if (editedCell.getColumn() == isApplicableRow) {
if (editedCell.getValue() === 'Not Applicable') {
var range = sheet.getRange(tableRange);
range.sort({ column : isApplicableRow, ascending: false });
}
Expand Down
Binary file modified resources/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit be50680

Please sign in to comment.