-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdune-project
More file actions
71 lines (60 loc) · 1.5 KB
/
Copy pathdune-project
File metadata and controls
71 lines (60 loc) · 1.5 KB
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
(lang dune 3.20)
(using menhir 2.1)
(using mdx 0.4)
(using dune_site 0.1)
(name explode_js)
(generate_opam_files true)
(source
(github explode-js/explode-js))
(authors "Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>")
(maintainers "Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>")
(license MIT)
(documentation https://url/to/documentation)
(package
(name explode_js)
(synopsis "Automatic Exploit Generation for Node.js Packages")
(description
"Explode.js is an exploit generation tool for Node.js packages \
that can automatically synthesize functional exploits for \
multi-interaction vulnerablitilties. That is, vulnerabilities \
that require a series of interactions with the vulnerable package \
to be exploited. Given a vulnerable package, explode-js can \
identify code injection, command injection, prototype pollution, \
and path traversal vulnerabilities, and build a JS program that is \
guaranteed to produce observable side effects, thereby confirming \
the existence of the vulnerability and eliminating false positives.")
(depopts
z3
cvc5)
(depends
bos
cmdliner
dune
dune-site
dune-glob
dune-build-info
(ecma-sl
(= "dev"))
extunix
ppxlib
ppx_deriving
ppx_deriving_yojson
fpath
(mdx :with-test)
ocaml
(smtml
(>= 0.25.0))
prelude
yojson
(menhir
(and
:build
(>= "20220210")))
(ocamlformat
(and
(>= 0.29.0)
:with-dev-setup)))
(tags
("symbolic execution" javascript exploit))
(sites
(share nodejs)))