this repo has no description
1opam-version: "2.0"
2synopsis: "Semantic analysis of binary executables"
3description: """
4
5BINSEC aims at developing an open-source platform filling the gap between formal
6methods over executable code and binary-level security analyses currently used
7in the security industry.
8
9The project targets the following applicative domains:
10
11 vulnerability analyses
12 malware comprehension
13 code protection
14 binary-level verification
15
16BINSEC is developed at CEA List in scientfic collaboration with Verimag and LORIA.
17
18An overview of some BINSEC features can be found in our SSPREW'17 tutorial."""
19maintainer: ["BINSEC <binsec@saxifrage.saclay.cea.fr>"]
20authors: [
21 "Adel Djoudi"
22 "Benjamin Farinier"
23 "Chakib Foulani"
24 "Dorian Lesbre"
25 "Frédéric Recoules"
26 "Guillaume Girol"
27 "Josselin Feist"
28 "Lesly-Ann Daniel"
29 "Manh-Dung Nguyen"
30 "Mathéo Vergnolle"
31 "Mathilde Ollivier"
32 "Matthieu Lemerre"
33 "Olivier Nicole"
34 "Richard Bonichon"
35 "Robin David"
36 "Sébastien Bardin"
37 "Soline Ducousso"
38 "Ta Thanh Dinh"
39 "Yaëlle Vinçont"
40]
41license: "LGPL-2.1-or-later"
42tags: [
43 "binary code analysis"
44 "symbolic execution"
45 "deductive"
46 "program verification"
47 "formal specification"
48 "automated theorem prover"
49 "plugins"
50 "abstract interpretation"
51 "dataflow analysis"
52 "linking"
53 "disassembly"
54]
55homepage: "https://binsec.github.io"
56bug-reports: "mailto:binsec@saxifrage.saclay.cea.fr"
57depends: [
58 "dune" {>= "3.0"}
59 "ocaml" {>= "4.09" & < "5"}
60 "menhir" {build & >= "20181113"}
61 "ocamlgraph" {>= "1.8.5"}
62 "zarith" {>= "1.4"}
63 "dune-site"
64 "toml" {>= "6"}
65 "ounit2" {with-test & >= "2"}
66 "qcheck" {with-test & >= "0.7"}
67 "odoc" {with-doc}
68]
69depopts: ["curses" "llvm" "unisim_archisec" "bitwuzla"]
70conflicts: [
71 "llvm" {< "6.0.0" | >= "16.0.0"}
72 "bitwuzla" {< "1.0.4"}
73]
74build: [
75 ["dune" "subst"] {dev}
76 [
77 "dune"
78 "build"
79 "-p"
80 name
81 "-j"
82 jobs
83 "--promote-install-files=false"
84 "@install"
85 "@runtest" {with-test}
86 "@doc" {with-doc}
87 ]
88 ["dune" "install" "-p" name "--create-install-files" name]
89]
90dev-repo: "git+https://github.com/binsec/binsec.git"
91available: [ arch = "x86_64" | arch = "ppc64" | arch = "arm64" | arch = "sparc64" ]
92url {
93 src:
94 "https://github.com/binsec/binsec/releases/download/0.7.3/binsec-0.7.3.tbz"
95 checksum: [
96 "sha256=05c507b9b2d96387499eb5c8be676db6be1604a9941e367fc19b8da90ea903be"
97 "sha512=e18c5d5e65e53a912b54948a8c66723023acdc84ff26edb627d6f88272447d277f379d51b567523a242b17036c5a44fc94861587d8bd3b08e077782073de4bee"
98 ]
99}
100x-commit-hash: "cf5c268752768647476692438fcac40bd157a5fa"