Skip to content

Commit 073e21e

Browse files
author
HeroicKatora
authored
Merge pull request #131 from dbrgn/afl
Add afl fuzz target
2 parents 8bf618a + e32125f commit 073e21e

File tree

112 files changed

+127
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+127
-0
lines changed

fuzz-afl/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
out/
2+
out-*/

fuzz-afl/Cargo.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[package]
2+
name = "fuzz-target-jpeg-decoder"
3+
version = "0.1.0"
4+
authors = ["jpeg-decoder developers"]
5+
edition = "2018"
6+
7+
[[bin]]
8+
name = "fuzz_decode"
9+
path = "src/fuzz_decode.rs"
10+
11+
[[bin]]
12+
name = "reproduce_decode"
13+
path = "src/reproduce_decode.rs"
14+
15+
[[bin]]
16+
name = "fuzz_info"
17+
path = "src/fuzz_info.rs"
18+
19+
[[bin]]
20+
name = "reproduce_info"
21+
path = "src/reproduce_info.rs"
22+
23+
[dependencies]
24+
afl = "0.8"
25+
jpeg-decoder = { path = "../" }

fuzz-afl/README.md

Lines changed: 20 additions & 0 deletions

fuzz-afl/in/4x4.jpg

1.4 KB

fuzz-afl/in/grass.jpg

6.5 KB
Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)