forked from BinaryAnalysisPlatform/bap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
1640 lines (1515 loc) · 41.4 KB
/
dune-project
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(lang dune 3.1)
(using dune_site 0.1)
(name bap)
(license MIT)
(version dev)
(authors "The BAP Team")
(maintainers "Ivan Gotovchits <[email protected]>")
(source (github BinaryAnalysisPlatform/bap))
(explicit_js_mode)
(formatting disabled)
(use_standard_c_and_cxx_flags false)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Package Descriptions ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Meta Packages
(package
(name bap)
(synopsis "BAP Meta Package")
(tags (bap meta))
(allow_empty)
(depends
(bap-core (= :version))
(bap-beagle (= :version))
(bap-beagle-strings (= :version))
(bap-constant-tracker (= :version))
(bap-microx (= :version))
(bap-primus-dictionary (= :version))
(bap-primus-powerpc (= :version))
(bap-primus-propagate-taint (= :version))
(bap-primus-random (= :version))
(bap-primus-region (= :version))
(bap-primus-support (= :version))
(bap-primus-systems (= :version))
(bap-primus-taint (= :version))
(bap-primus-test (= :version))
(bap-primus-x86 (= :version))
(bap-run (= :version))
(bap-strings (= :version))
(bap-taint (= :version))
(bap-taint-propagator (= :version))
(bap-term-mapper (= :version))
(bap-trivial-condition-form (= :version))
(bap-warn-unused (= :version))))
(package
(name bap-core)
(synopsis "The core BAP packages")
(tags (bap meta))
(allow_empty)
(description "the meta package to install the core parts of BAP")
(depends
(bap-abi (= :version))
(bap-analyze (= :version))
(bap-api (= :version))
(bap-arm (= :version))
(bap-bil (= :version))
(bap-build (= :version))
(bap-bundle (= :version))
(bap-byteweight (= :version))
(bap-cache (= :version))
(bap-callgraph-collator (= :version))
(bap-callsites (= :version))
(bap-c (= :version))
(bap-cxxfilt (= :version))
(bap-demangle (= :version))
(bap-dependencies (= :version))
(bap-disassemble (= :version))
(bap-dump-symbols (= :version))
(bap-elementary (= :version))
(bap-flatten (= :version))
(bap-frontc (= :version))
(bap-frontend (= :version))
(bap-glibc-runtime (= :version))
(bap-llvm (= :version))
(bap-mc (= :version))
(bap-mips (= :version))
(bap-objdump (= :version))
(bap-optimization (= :version))
(bap-patterns (= :version))
(bap-plugins (= :version))
(bap-powerpc (= :version))
(bap-primus-lisp (= :version))
(bap-primus (= :version))
(bap-print (= :version))
(bap-raw (= :version))
(bap-recipe-command (= :version))
(bap-recipe (= :version))
(bap-relation (= :version))
(bap-relocatable (= :version))
(bap-report (= :version))
(bap-riscv (= :version))
(bap-specification (= :version))
(bap-ssa (= :version))
(bap-std (= :version))
(bap-stub-resolver (= :version))
(bap-symbol-reader (= :version))
(bap-systemz (= :version))
(bap-thumb (= :version))
(bap-toplevel (= :version))
(bap-x86 (= :version))))
(package
(name bap-extra)
(synopsis "The extra BAP packages")
(tags (bap meta))
(allow_empty)
(description "the meta package to install the core parts of BAP")
(depends
(bap (= :version))
(bap-byteweight-frontend (= :version))
(bap-elf (= :version))
(bap-primus-symbolic-executor (= :version))
(bap-ghidra (= :version))
(bap-trace (= :version))
(bap-traces (= :version))
(bap-radare2 (= :version))))
(package
(name bap-common)
(synopsis "A Package on which all BAP packages depend")
(tags (bap meta))
(sites
(lib plugins)
(share api)
(share lisp)
(share primus)
(share semantics)
(share signatures)
(share site_lisp))
(depends
(base (and (>= v0.14) (< v0.16)))
dune
dune-configurator
dune-site
(ocaml (> 4.08.0))
(stdio (and (>= v0.14) (< v0.16)))))
(package
(name bap-primus-support)
(synopsis "Provides essential Primus components")
(tags (bap meta))
(allow_empty)
(depends
(bap-primus-exploring-scheduler (= :version))
(bap-primus-greedy-scheduler (= :version))
(bap-primus-limit (= :version))
(bap-primus-loader (= :version))
(bap-primus-mark-visited (= :version))
(bap-primus-print (= :version))
(bap-primus-promiscuous (= :version))
(bap-primus-round-robin-scheduler (= :version))
(bap-primus-wandering-scheduler (= :version))))
;; Data Packages
(package
(name bap-signatures)
(tags (bap data))
(allow_empty)
(synopsis "A data package with BAP binary signatures"))
;; Actual Packages
(package
(name bap-abi)
(synopsis "BAP plugin and library for ABI-specific transformations")
(tags (bap bap-pass bap-plugin))
(depends
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-analyze)
(synopsis "BAP Knowledge Base REPL")
(tags (bap bap-command bap-plugin))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(linenoise (and (>= 1.1.0) (< 2.0.0)))
(monads (= :version))
(bap-common (= :version))
(ppx_bap (= :version))))
(package
(name bap-api)
(synopsis "BAP pass that adds arguments to subroutines")
(tags (bap bap-plugin bap-library))
(depends (bap-common (= :version))
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-arm)
(synopsis "BAP ARM support package")
(tags (bap bap-plugin bap-library arm))
(depends
(bap-abi (= :version))
(bap-api (= :version))
(bap-core-theory (= :version))
(bap-c (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bap-traces (= :version))
(bitvec-order (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-beagle)
(synopsis "BAP obfuscated string solver")
(tags (bap bap-plugin))
(deprecated_package_names bap-beagle-prey)
(depends
(bap-future (= :version))
(bap-microx (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bap-strings (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-bil)
(synopsis "BAP Instruction Language (BIL)")
(tags (bap bap-plugin))
(depends
(bap-core-theory (= :version))
(bap-future (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(bitvec-order (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))))
(package
(name bap-bml)
(synopsis "BAP Term Mapping Language (BML)")
(tags (bap bap-library))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))))
(package
(name bap-byteweight)
(synopsis "BAP function start identification library and pass")
(tags (bap bap-library bap-plugin))
(depends
(bap-signatures (= :version))
(bap-std (= :version))
(camlzip (and (>= 1.0) (< 2.0)))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))
(uri (>= 4.2.0))))
(package
(name bap-byteweight-frontend)
(synopsis "A frontend to the BAP function start identification framework")
(tags (bap bap-frontend bap-command))
(depends
(bap-byteweight (= :version))
(bap-std (= :version))
(cmdliner (and (>= 1.0) (< 2.0)))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
(bap-common (= :version))
(ocurl (>= 0.9.0))
(ppx_bap (= :version))
(re (and (>= 1.0) (< 2.0)))))
(package
(name bap-build)
(synopsis "BAP Build Tool (ocamlbuild+bap)")
(tags (bap bap-tool ocamlbuild))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
ocamlbuild
ocamlfind
(ppx_bap (= :version))))
(package
(name bap-bundle)
(synopsis "A bundler for BAP plugins")
(tags (bap bap-tool))
(depends
(camlzip (and (>= 1.0) (< 2.0)))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
(bap-common (= :version))
(ppx_bap (= :version))
(uri (>= 4.2.0))))
(package
(name bap-c)
(synopsis "The C language support library for BAP")
(tags (bap bap-library c))
(depends
(bap-abi (= :version))
(bap-api (= :version))
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))))
(package
(name bap-cache)
(synopsis "BAP cache management")
(tags (bap bap-plugin))
(depends
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
mmap
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))
(uuidm (>= 0.9.7))))
(package
(name bap-callgraph-collator)
(synopsis "Compares binaries callgraphs")
(tags (bap bap-analysis))
(depends
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(graphlib (= :version))
(bap-common (= :version))
(ppx_bap (= :version))
(re (and (>= 1.0) (< 2.0)))
(regular (= :version))))
(package
(name bap-callsites)
(synopsis "BAP pass that injects data definitions at call sites")
(tags (bap bap-plugin bap-pass))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))))
(package
(name bap-core-theory)
(synopsis "BAP Machine Code Semantics")
(description "\
The Core Theory is an intermediate language that is designed to \
express the semantics of computer programs. It focuses on programs \
that are represented in binary machine code and is capable of an \
accurate representation of the architectural and micro-architectural \
details of the program behavior.")
(tags (bap bap-library))
(depends
(bap-knowledge (= :version))
(bap-main (= :version))
(bitvec (= :version))
(bitvec-binprot (= :version))
(bitvec-order (= :version))
(bitvec-sexp (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))))
(package
(name bap-constant-tracker)
(synopsis "A constant tracking analysis based on BAP Primus")
(tags (bap bap-analysis bap-plugin bap-primus))
(depends
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))))
(package
(name bap-cxxfilt)
(synopsis "A name demangler that uses system's c++filt")
(tags (bap bap-plugin))
(depends
(bap-demangle (= :version))
(bap-std (= :version))
(conf-binutils (>= 0.3))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))))
(package
(name bap-demangle)
(synopsis "Provides names service and demangling facilities for BAP")
(tags (bap bap-library))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))))
(package
(name bap-dependencies)
(synopsis "Shows program depenencies")
(tags (bap bap-command))
(depends
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-disassemble)
(synopsis "Disassembles and analyzes binaries using BAP")
(tags (bap bap-command))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-relation (= :version))
(bap-std (= :version))
(bitvec-binprot (= :version))
(bitvec-order (= :version))
(bitvec-sexp (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-dump-symbols)
(synopsis "A BAP plugin for dumping symbol information")
(tags (bap bap-plugin))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(graphlib (= :version))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-dwarf)
(synopsis "BAP DWARF parser")
(tags (bap bap-library dwarf))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-elementary)
(synopsis "Floating-point approximations of elementary functions")
(tags (bap bap-library floating-points))
(depends
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-std (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))))
(package
(name bap-elf)
(synopsis "BAP ELF parser and program loader")
(tags (bap bap-plugin elf))
(depends
(bap-dwarf (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(ppx_bitstring (and (>= 4.0.0) (< 5.0.0)))
(regular (= :version))))
(package
(name bap-flatten)
(synopsis "A BAP pass that flattens program to TAC")
(tags (bap bap-plugin))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))))
(package
(name bap-frontend)
(synopsis "The main BAP command-line tool")
(tags (bap bap-command))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
ocamlfind
(regular (= :version))))
(package
(name bap-frontc)
(synopsis "A BAP C language fronted based on FrontC")
(tags (bap bap-plugin c))
(depends
(bap-c (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(FrontC (>= 4.1.0))
(bap-common (= :version))))
(package
(name bap-future)
(synopsis "A library for asynchronous values")
(description "\
A library for reasoning about state based dynamic systems. This can \
be seen as a common denominator between Lwt and Async libraries.")
(tags (bap future))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))))
(package
(name bap-ghidra)
(synopsis "The BAP NSA Ghidra backend")
(tags (bap ghidra disassembler))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(ppx_bap (= :version))
(bap-common (= :version))
(bap-std (= :version))
(bap-main (= :version))))
(package
(name bap-glibc-runtime)
(synopsis "The BAP Glibc Runtime support package")
(tags (bap bap-plugin))
(depends
(bap-abi (= :version))
(bap-c (= :version))
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ogre (= :version))))
(package (name bap-ida)
(synopsis "BAP IDA Pro integration")
(tags (bap bap-library ida-pro))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(regular (= :version))
fileutils
(bap-common (= :version))
(bap-std (= :version))
(re (and (>= 1.0) (< 2.0)))))
(package
(name bap-ida-plugin)
(synopsis "BAP IDA Pro integration")
(tags (bap bap-plugin bap-ida ida-pro))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-knowledge)
(synopsis "Knowledge Reasoning and Representation Framework")
(tags (bap bap-library knowledge))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(ppx_bap (= :version))
(bap-common (= :version))
(monads (= :version))))
(package
(name bap-llvm)
(synopsis "BAP LLVM backend")
(tags (bap bap-plugin llvm))
(depends
(bap-std (= :version))
(conf-bap-llvm (>= 1.8))
(core_kernel (and (>= v0.14) (< v0.16)))
mmap
(monads (= :version))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))))
(package
(name bap-main)
(synopsis "The BAP Framework Configuration Library")
(tags (bap bap-library))
(depends
(bap-build (= :version))
(bap-future (= :version))
(bap-plugins (= :version))
(bap-recipe (= :version))
(base (and (>= v0.14) (< v0.16)))
(cmdliner (and (>= 1.0) (< 2.0)))
(bap-common (= :version))
(stdio (and (>= v0.14) (< v0.16)))))
(package
(name bap-mc)
(synopsis "BAP Machine Code Playground (BAP's llvm-mc)")
(tags (bap bap-command))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))))
(package
(name bap-microx)
(synopsis "BAP Legacy Microexecution Framework")
(tags (bap bap-plugin))
(depends
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(bap-common (= :version))
(ppx_bap (= :version))))
(package
(name bap-mips)
(synopsis "BAP MIPS Semantics")
(tags (bap bap-plugin mips))
(depends
(bap-abi (= :version))
(bap-api (= :version))
(bap-core-theory (= :version))
(bap-c (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))
zarith))
(package
(name bap-objdump)
(synopsis "Extracts symbols from a binary using binutils objdump")
(tags (bap bap-plugin))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-relation (= :version))
(bap-std (= :version))
(bitvec-order (= :version))
(bitvec-sexp (= :version))
(bitvec (= :version))
(conf-binutils (>= 0.3))
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(re (and (>= 1.0) (< 2.0)))))
(package
(name bap-optimization)
(synopsis "A BAP IR optimization pass")
(tags (bap bap-plugin bap-pass))
(depends
(core_kernel (and (>= v0.14) (< v0.16)))
(bap-common (= :version))
(ppx_bap (= :version))
(bap-std (= :version))
(regular (= :version))
(graphlib (= :version))))
(package
(name bap-patterns)
(synopsis "Applies semantic actions to the matching byte patterns")
(tags (bap bap-plugin bap-command))
(depends
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-primus (= :version))
(bap-relation (= :version))
(bap-std (= :version))
(bitvec-binprot (= :version))
(bitvec-order (= :version))
(bitvec-sexp (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
(bap-common (= :version))
(ppx_bap (= :version))
(uri (>= 4.2.0))
(xmlm (>= 1.3.0))))
(package
(name bap-phoenix)
(synopsis "Dumps BAP project in the phoenix format")
(tags (bap bap-plugin))
(depends
(bap-common (= :version))
(bap-std (= :version))
cmdliner
(cmdliner (and (>= 1.0) (< 2.0)))
(core_kernel (and (>= v0.14) (< v0.16)))
ezjsonm
(graphlib (= :version))
(ppx_bap (= :version))
(regular (= :version))
(text-tags (= :version))))
(package
(name bap-piqi)
(synopsis "Serializes BAP Project in various formats using piqi")
(tags (bap bap-plugin))
(depends
(bap-common (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(piqi (>= 0.7.8))))
(package
(name bap-plugins)
(synopsis "BAP Plugin management library")
(tags (bap bap-library))
(depends
(bap-common (= :version))
(bap-bundle (= :version))
(bap-future (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
fileutils
ocamlfind
(ppx_bap (= :version))
uri))
(package
(name bap-powerpc)
(synopsis "BAP PowerPC semantics")
(tags (bap bap-plugin powerpc))
(depends
(bap-abi (= :version))
(bap-api (= :version))
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-c (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(ogre (= :version))
(ppx_bap (= :version))
(regular (= :version))
zarith))
(package
(name bap-primus)
(synopsis "BAP Microexecution Framework")
(tags (bap bap-library bap-primus))
(depends
(bap-abi (= :version))
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-c (= :version))
(bap-future (= :version))
(bap-knowledge (= :version))
(bap-std (= :version))
(bap-strings (= :version))
(bitvec-binprot (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(graphlib (= :version))
(monads (= :version))
(parsexp (and (>= v0.14) (< v0.16)))
(ppx_bap (= :version))
(regular (= :version))
(uuidm (>= 0.9.7))))
(package
(name bap-primus-dictionary)
(synopsis "Provides dictionary data structure to Primus Lisp")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))))
(package
(name bap-primus-exploring-scheduler)
(synopsis "A BAP Primus scheduler")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-greedy-scheduler)
(synopsis "A BAP Primus scheduler")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-limit)
(synopsis "Enables BAP Primus interpreter termination ")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))))
(package
(name bap-primus-lisp)
(synopsis "BAP Primus Lisp runtime")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-knowledge (= :version))
(bap-main (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
(regular (= :version))))
(package
(name bap-primus-loader)
(synopsis "BAP Primus loader")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(ogre (= :version))))
(package
(name bap-primus-mark-visited)
(synopsis "A BAP Primus coverage tracker")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus-track-visited (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))))
(package
(name bap-primus-powerpc)
(synopsis "A BAP Primus PowerPC support module")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))))
(package
(name bap-primus-print)
(synopsis "A BAP Primus state and observations printer")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-core-theory (= :version))
(bap-future (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bare (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-promiscuous)
(synopsis "A BAP Primus promiscuous executor")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-propagate-taint)
(synopsis "A BAP Primus legacy taint engine compatibility layer")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bap-taint (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-random)
(synopsis "A BAP Primus value randomizer")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-main (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(bitvec-sexp (= :version))
(bitvec (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))
zarith))
(package
(name bap-primus-region)
(synopsis "A BAP Primus Lisp regions library")
(tags (bap bap-primus bap-primus-lisp))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-round-robin-scheduler)
(synopsis "A BAP Primus scheduler")
(tags (bap bap-primus))
(depends
(bap-common (= :version))
(bap-primus (= :version))
(bap-std (= :version))
(core_kernel (and (>= v0.14) (< v0.16)))
(monads (= :version))))
(package
(name bap-primus-symbolic-executor)
(synopsis "A BAP Primus symbolic executor")
(tags (bap bap-primus))
(depends
(bap-common (= :version))