-
Notifications
You must be signed in to change notification settings - Fork 2
/
_oasis
105 lines (98 loc) · 1.92 KB
/
_oasis
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
OASISFormat: 0.4
Name: bin2json
Version: 1.0.0
Synopsis: Converts an ELF, mach-o, or PE binary to a JSON representation
Authors: m4b
Maintainers: [email protected]
Homepage: http://github.com/m4b/bin2json
License: BSD-3-clause
Plugins: META (0.4), DevFiles (0.4)
Description: This program converts an ELF, mach-o, or PE binary to a JSON representation using rdr as the backend. Optionally minifies, converts the binary to a base64 representation, and/or includes the byte coverage analysis generated by rdr.
Library json
Path: lib/json
BuildTools: ocamlbuild
Install: false
BuildDepends:
jsonm,
rdr
Modules:
B2J_Json,
B2J_ByteCoverage,
B2J_Config,
B2J_Utils
Library mach2json
Path: lib/mach
BuildTools: ocamlbuild
Install: false
BuildDepends:
json,
base64,
rdr,
rdr.mach
Modules:
B2J_MachHeader,
B2J_MachLoadCommand,
B2J_MachLoadCommandTypes,
B2J_MachExport,
B2J_MachImport,
B2J_MachSymbolTable
Library elf2json
Path: lib/elf
BuildTools: ocamlbuild
Install: false
BuildDepends:
json,
base64,
rdr,
rdr.elf
Modules:
B2J_Elf,
B2J_ElfHeader,
B2J_ElfProgramHeader,
B2J_ElfSectionHeader,
B2J_ElfSymbolTable,
B2J_ElfDynamic,
B2J_ElfReloc
Library pe2json
Path: lib/pe
BuildTools: ocamlbuild
Install: false
BuildDepends:
json,
base64,
rdr,
rdr.pe
Modules:
B2J_PE,
B2J_PEHeader,
B2J_PESectionTable,
B2J_PEExport,
B2J_PEImport
Library b2jlib
Path: lib
BuildTools: ocamlbuild
Install: false
BuildDepends:
json,
mach2json,
elf2json,
pe2json,
base64,
rdr,
rdr.elf,
rdr.mach,
rdr.pe
Modules:
B2J
Executable bin2json
Path: src
BuildTools: ocamlbuild
MainIs: bin2json.ml
CompiledObject: best
BuildDepends:
json,
b2jlib,
rdr,
rdr.elf
Test "test_other"
Command: test/test.sh