-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* corrected dune linter warnings * Adjusted maintainer * Added SCons to dependency list, added CONTRIBUTORS.md * Set release date of v0.2 * added some spaces * Pack the core library into the same opam package * Fix Codacy Issues
- Loading branch information
1 parent
8c23e10
commit 62021a6
Showing
7 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0.2-dev (2019-XX-XX) | ||
0.2 (2019-06-25) | ||
===== | ||
|
||
- Refactoring: Unification of cwe_checker function interface | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# cwe_checker contributors | ||
|
||
- [Thomas Barabosch](https://github.com/tbarabosch) | ||
- Original author | ||
|
||
- [Nils-Edvin Enkelmann](https://github.com/Enkelmann) | ||
- Current maintainer | ||
|
||
- [Jörg Stucke](https://github.com/jstucke) | ||
- Docker container |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ synopsis: "BAP plugin collection to detect common bug classes" | |
description: """ | ||
cwe_checker is a suite of tools to detect common bug classes such as use of dangerous functions and simple integer overflows. These bug classes are formally known as Common Weakness Enumerations (CWEs). | ||
""" | ||
maintainer: "CWE_checker Team <firmware-security@fkie.fraunhofer.de>" | ||
maintainer: "CWE_checker Team <nils-edvin.enkelmann@fkie.fraunhofer.de>" | ||
authors: [ "Thomas Barabosch <[email protected]>" "Nils-Edvin Enkelmann <[email protected]>" ] | ||
license: "LGPL-3.0" | ||
homepage: "https://github.com/fkie-cad/cwe_checker" | ||
|
@@ -19,7 +19,6 @@ depends: [ | |
"alcotest" {>= "0.8.3"} | ||
"core_kernel" {>= "v0.11" & < "v0.12"} | ||
"ppx_jane" {>= "v0.11" & < "v0.12"} | ||
"cwe_checker_core" {= "0.2"} | ||
] | ||
depexts: [ | ||
"binutils" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ synopsis: "Core library for the cwe_checker package" | |
description: """ | ||
Core library for the cwe_checker suite of tools. | ||
""" | ||
maintainer: "CWE_checker Team <firmware-security@fkie.fraunhofer.de>" | ||
maintainer: "CWE_checker Team <nils-edvin.enkelmann@fkie.fraunhofer.de>" | ||
authors: [ "Thomas Barabosch <[email protected]>" "Nils-Edvin Enkelmann <[email protected]>" ] | ||
license: "LGPL-3.0" | ||
homepage: "https://github.com/fkie-cad/cwe_checker" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
open Bap.Std | ||
open Core_kernel | ||
open Cwe_checker_core | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
open Bap.Std | ||
open Core_kernel | ||
|
||
val tests: unit Alcotest.test_case list |