├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── resources ├── screenshot.png └── test.jsonl └── src ├── index.html ├── main.rs ├── milligram.min.css ├── monitor.js └── plotly-basic.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea/* -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /resources/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/resources/test.jsonl -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/milligram.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/src/milligram.min.css -------------------------------------------------------------------------------- /src/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/src/monitor.js -------------------------------------------------------------------------------- /src/plotly-basic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eknoes/libafl-dashboard/HEAD/src/plotly-basic.min.js --------------------------------------------------------------------------------