File tree Expand file tree Collapse file tree 8 files changed +136
-0
lines changed
main/java/org/owasp/benchmarkutils
test/java/org/owasp/benchmarkutils/score Expand file tree Collapse file tree 8 files changed +136
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Sascha Knoop
16
+ * @created 2024
17
+ */
1
18
package org .owasp .benchmarkutils .score .parsers ;
2
19
3
20
import static java .lang .Integer .parseInt ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Dave Wichers
16
+ * @created 2021
17
+ */
1
18
package org .owasp .benchmarkutils .tools ;
2
19
3
20
public interface Logger {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Dave Wichers
16
+ * @created 2021
17
+ */
1
18
package org .owasp .benchmarkutils .tools ;
2
19
3
20
public class LoggerConfigurationException extends Exception {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Sascha Knoop
16
+ * @created 2024
17
+ */
1
18
package org .owasp .benchmarkutils .score .builder ;
2
19
3
20
import java .util .HashSet ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Sascha Knoop
16
+ * @created 2022
17
+ */
1
18
package org .owasp .benchmarkutils .score .parsers ;
2
19
3
20
import static org .junit .jupiter .api .Assertions .assertEquals ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Sascha Knoop
16
+ * @created 2022
17
+ */
1
18
package org .owasp .benchmarkutils .score .parsers ;
2
19
3
20
import static java .util .Collections .singletonList ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Sascha Knoop
16
+ * @created 2024
17
+ */
1
18
package org .owasp .benchmarkutils .score .parsers ;
2
19
3
20
import static org .junit .jupiter .api .Assertions .assertEquals ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * OWASP Benchmark Project
3
+ *
4
+ * <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
5
+ * details, please see <a
6
+ * href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
7
+ *
8
+ * <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
9
+ * of the GNU General Public License as published by the Free Software Foundation, version 2.
10
+ *
11
+ * <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13
+ * PURPOSE. See the GNU General Public License for more details
14
+ *
15
+ * @author Barath Raj
16
+ * @created 2023
17
+ */
1
18
package org .owasp .benchmarkutils .score .parsers ;
2
19
3
20
import org .junit .jupiter .api .BeforeEach ;
You can’t perform that action at this time.
0 commit comments