-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinsec.opam
82 lines (73 loc) · 1.81 KB
/
binsec.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
opam-version: "2.0"
name: "binsec"
synopsis: "Semantic analysis of binary executables"
version: "0.3"
description: "BINSEC aims at developing an open-source platform filling the gap between formal methods over executable code and binary-level security analyses currently used in the security industry.
The project targets the following applicative domains:
vulnerability analyses
malware comprehension
code protection
binary-level verification
BINSEC is developed at CEA List in scientfic collaboration with Verimag and LORIA.
An overview of some BINSEC features can be found in our SSPREW'17 tutorial."
maintainer: "BINSEC <[email protected]>"
authors: [
"Adel Djoudi"
"Benjamin Farinier"
"Frédéric Recoules"
"Josselin Feist"
"Lesly-Ann Daniel"
"Manh-Dung Nguyen"
"Mathilde Ollivier"
"Matthieu Lemerre"
"Olivier Nicole"
"Richard Bonichon"
"Robin David"
"Ta Thanh Dinh"
"Yaëlle Vinçont"
]
homepage: "https://binsec.github.io"
license: "GNU Lesser General Public License version 2.1"
doc: ["http://binsec.github.io/apiref/index.html"]
bug-reports: "mailto:binsec _at_ saxifrage.saclay.cea.fr"
tags: [
"binary code analysis"
"symbolic execution"
"deductive"
"program verification"
"formal specification"
"automated theorem prover"
"plugins"
"abstract interpretation"
"dataflow analysis"
"linking"
"disassembly"
]
build: [
["autoconf"] {pinned}
["./configure" "--prefix" prefix]
[make "-C" "src" "depend"]
[make "-C" "src" "-j%{jobs}%"]
]
install: [
[make "-C" "src" "install"]
]
depends: [
"ocaml" { >= "4.04.2" & <= "4.07.1" }
"ocamlfind"
"menhir"
"ocamlgraph" { >= "1.8.5" & < "1.9~" }
"piqi"
"piqilib"
"zarith"
"zmq"
"llvm"
"hashset"
"containers"
]
depexts: [
"make"
]
messages: [
"BINSEC can use external automatic solvers: boolector, z3 or yices"
]