blob: 6d36a61068fbbab4689c711049d9d6b1051a78b2 (
plain) (
blame)
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
|
# Loftix
Loftix is a Guix channel containing packages
used and made by UNIST Lab of Software.
## Installation
Add the [Guix channel] to `~/.config/guix/channels.scm`:
(cons* (channel
(name 'loftix)
(url "https://trong.loang.net/~cnx/loftix")
(branch "main")
(introduction
(make-channel-introduction
"1b5437ce217590545f7a7319a5c62b6300aee6c4"
(openpgp-fingerprint
"838A FE0D 55DC 074E 360F 943A 84B6 9CE6 F3F6 B767"))))
%default-channels)
Then run `guix pull`.
## Packages
### Fuzzing
- [afl-dyninst]: [Dyninst] integration for [AFL++]
- [evocatio]: Bug analyzer for bug capability discovery
- [fuzzolic]: Concolic fuzzer
### Patching
- [e9patch]: static binary rewriting tool
### Synthesis
- [python-pacfix]: PAC-learning-based program synthesizer
- [taosc]: Makeshift binary patch generator
### Theorem Proving
- [fuzzy-sat]: Approximate solver for concolic execution
[Guix channel]: https://guix.gnu.org/manual/devel/en/html_node/Channels.html
[afl-dyninst]: https://trong.loang.net/~cnx/afl-dyninst/about
[Dyninst]: https://github.com/dyninst/dyninst
[AFL++]: https://aflplus.plus
[evocatio]: https://github.com/HexHive/Evocatio
[fuzzolic]: https://season-lab.github.io/fuzzolic
[e9patch]: https://github.com/GJDuck/e9patch
[python-pacfix]: https://github.com/hsh814/pacfix-python
[taosc]: https://trong.loang.net/~cnx/taosc/about
[fuzzy-sat]: https://github.com/season-lab/fuzzy-sat
|