-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (129 loc) · 5.18 KB
/
index.html
File metadata and controls
138 lines (129 loc) · 5.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Angora Fuzzer</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="author" content="spinpx" />
<link rel="stylesheet" type="text/css" href="./main.css" />
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
</head>
<body>
<header>
<div id="logo">Angora Fuzzer</div>
</header>
<hr class="sp-line" />
<div id="intro">
<h2 class="smallcap">About</h2>
<p>
Angora is a mutation-based fuzzer. The main goal of Angora is to increase branch coverage by solving path
constraints without
symbolic execution.
</p>
</div>
<hr class="sp-line" />
<div id="publications">
<h2 class="smallcap">Publications</h2>
<div id="bibtex_display">
<div class="if bibtex_template" style="display: none;">
<span class="if title">
<span class="if !nolink">
<a class="bibtexVar" href="papers/+BIBTEXKEY+.pdf" extra="BIBTEXKEY">
<span style="text-decoration: underline;" class="title"></span>,
</a>
</span>
<span class="if nolink">
<span class="title"></span>,
</span>
</span>
<div class="if author">
<span class="author"></span>
</div>
<div>
<span class="if journal">
<em>
<span class="journal"></span>
</em>,</span>
<span class="if booktitle">In
<em>
<span class="booktitle"></span>
</em>,</span>
<span class="if editor">
<span class="editor"></span> (editors),</span>
<span class="if publisher">
<em>
<span class="publisher"></span>
</em>,</span>
<span class="if !journal number">Technical report
<span class="number"></span>,</span>
<span class="if institution">
<span class="institution"></span>,</span>
<span class="if address">
<span class="address"></span>,</span>
<span class="if volume">
<span class="volume"></span>,</span>
<span class="if journal number">(
<span class="number"></span>),</span>
<span class="if pages"> pages
<span class="pages"></span>,</span>
<span class="if month">
<span class="month"></span>,</span>
<span class="if day">
<span class="day"></span>,</span>
<span class="if year">
<span class="year"></span>.</span>
<span class="if note">
<span class="note"></span>.</span>
<a class="bibtexVar bib-button" role="button" href="#bib+BIBTEXKEY+" data-toggle="bib+BIBTEXKEY+"
extra="BIBTEXKEY">
[bib]
</a>
</div>
<div class="bibtexVar bib-raw-content" id="bib+BIBTEXKEY+" extra="BIBTEXKEY">
<div class="well">
<pre><span class="bibtexraw noread"></span></pre>
</div>
</div>
<div style="display:none">
<span class="bibtextype"></span>
</div>
</div>
</div>
<hr class="sp-line" />
<div id="souce">
<h2 class="smallcap">Source Code</h2>
<a target="_blank" href="https://github.com/AngoraFuzzer/Angora">Github repository</a>
</div>
<hr class="sp-line" />
<div id="team">
<h2 class="smallcap">Team</h2>
<ul id="team-list">
<li>
<a target="_blank" href="https://spinpx.com">Peng Chen</a> </li>
<li>
<a target="_blank" href="http://web.cs.ucdavis.edu/~hchen/">Hao Chen</a> </li>
</ul>
</div>
</body>
<textarea id="bibtex_input" style="display:none;">
@InProceedings{Chen2018Angora,
author = {Peng Chen, Hao Chen},
title = {Angora: efficient fuzzing by principled search},
booktitle = {IEEE Symposium on Security and Privacy (S&P)},
year= {2018},
month= {May},
day={21--23},
date = {2018-05-21/2018-05-23},
address = {San Francisco, CA},
OPTannote = {10.0\%}
}
</textarea>
<script type="text/javascript" src="./jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="./bibtex.js"></script>
<script>
$('#publications').on('click', 'a.bib-button', function () {
var key = "#" + $(this).data("toggle");
$(key).toggle("fast", function () {
});
});
</script>
</html>