Skip to content

Publish a list of security-related projects #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
DevQps opened this issue Mar 16, 2019 · 21 comments · Fixed by #32
Closed

Publish a list of security-related projects #30

DevQps opened this issue Mar 16, 2019 · 21 comments · Fixed by #32

Comments

@DevQps
Copy link
Contributor

DevQps commented Mar 16, 2019

Description

There are many great crates and projects out there that enhance or assess the security of the Rust ecosystem someway. However there is currently no central point from which these projects can be found and they are often linked through blog posts or interesting discussions on Zulip.

I think the README of this working group would be a great place to collect projects that can be of helping achieving our 2019 Working Group Goals (Kudo's for Shnatsel on writing this).

By doing this these projects would have more visibility and then can hopefully be used and improved to reach our goals.

I suggest that we leave this issue open for a week such that projects can be suggested. After that I can make a Pull Request that updates the README. Any projects that follow afterwards can then have a seperate PR.

@DevQps DevQps changed the title Update the README with a list of projects Update the README with a list of security-related projects Mar 16, 2019
@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

RustSec Advisory Database

Repository: https://github.com/RustSec/advisory-db/

Description:
The RustSec Advisory Database is a repository of security advisories filed against Rust crates published via https://crates.io. Works closely with Cargo Audit.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

Cargo Audit

Repository: https://github.com/RustSec/cargo-audit

Description:
Audit Cargo.lock for crates with security vulnerabilities reported to the RustSec Advisory Database.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

RustSec Advisory Client

Repository: https://github.com/RustSec/rustsec-crate

Description:
Client library for accessing the RustSec Security Advisory Database: fetches the advisory-db (or other compatible) git repository and audits Cargo.lock files against it. It is mainly used by Cargo Audit but may be useful if you would like to consume the RustSec advisory database in other capacities.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

Cargo Geiger

Repository: https://github.com/anderejd/cargo-geiger

Description:
A program that list statistics related to usage of unsafe Rust code in a Rust crate and all its dependencies.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

Cargo Fuzz

Repository: https://github.com/rust-fuzz/cargo-fuzz

Description:
Command-line wrapper for using libFuzzer. Easy to use, no need to recompile LLVM!

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

Crates Audit

Repository: https://gitlab.com/zachreizner/crates-audit/

Description:
A tool to cross-reference the crates.io index with the RustSec Advisory database.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 16, 2019

The Update Framework in Rust

Repository: https://github.com/heartsucker/rust-tuf

Description:
A Rust implementation of The Update Framework.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

Cargo Crev

Repository: https://github.com/dpc/crev

Description:
crev is an code review system as opposed to typically practiced code-change review system.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

MIRAI

Repository: https://github.com/facebookexperimental/MIRAI

Description:
Mirai is an abstract interpreter for the Rust compiler's mid-level intermediate representation (MIR). It is intended to become a widely used static analysis tool for Rust.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

Cargo Clippy

Repository: https://github.com/rust-lang/rust-clippy

Description:
A collection of lints to catch common mistakes and improve your Rust code.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

MIRI

Repository: https://github.com/rust-lang/miri

Description:
An experimental interpreter for Rust's mid-level intermediate representation (MIR). It can run binaries and test suites of cargo projects and detect certain classes of undefined behavior

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

Libdiffuzz

Repository: https://github.com/Shnatsel/libdiffuzz

Description:
This is a drop-in replacement for OS memory allocator that can be used to detect uses of uninitialized memory. It is designed to be used in case Memory Sanitizer is not applicable for some reason.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

BugHunt, Rust

Repository: https://github.com/blt/bughunt-rust

Description:
This project is aiming to provide "stateful" QuickCheck models for Rust's standard library.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

Angora

Repository: https://github.com/AngoraFuzzer/Angora

Description:
Angora is a mutation-based coverage guided fuzzer. The main goal of Angora is to increase branch coverage by solving path constraints without symbolic execution.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

honggfuzz-rs

Repository: https://github.com/rust-fuzz/honggfuzz-rs

Description:
A fuzzer developed by Google.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

afl.rs

Repository: https://github.com/rust-fuzz/afl.rs

Description:
Allows one to run the AFL fuzzer on code written in the Rust programming language.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

QuickCheck

Repository: https://github.com/BurntSushi/quickcheck

Description:
QuickCheck is a way to do property based testing using randomly generated input.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 17, 2019

Proptest

Repository: https://github.com/altsysrq/proptest

Description:
Proptest is a property testing framework (i.e., the QuickCheck family) inspired by the Hypothesis framework for Python.

@DevQps DevQps changed the title Update the README with a list of security-related projects Publish a list of security-related projects Mar 17, 2019
@vakaras
Copy link

vakaras commented Mar 24, 2019

Loom

Repository: https://github.com/carllerche/loom

Description:
Loom is a model checker for concurrent Rust code. It exhaustively explores the behaviors of code under the C11 memory model, which Rust inherits.

@brycx
Copy link

brycx commented Mar 25, 2019

untrusted.rs

Repository: https://github.com/briansmith/untrusted

Description:
untrusted.rs allows for reliable and efficient parsing of untrusted inputs in Rust.

EDIT: On second thought, this might not be relevant to what the issue is about. I think I've misunderstood. I'll let @DevQps decide whether it's in scope or not.

@DevQps
Copy link
Contributor Author

DevQps commented Mar 25, 2019

@brycx I think it can serve a purpose here! We'll just have to place it in the right category. Like "Utilities libraries for safe programming" or something like that.

With a bit of luck I will be able to create a Pull Request of this today or tomorrow!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants