Skip to content

Commit

Permalink
Minor verbiage updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Mar 28, 2024
1 parent b88b214 commit 2702534
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Test](https://github.com/trailofbits/ruzzy/actions/workflows/test.yml/badge.svg)](https://github.com/trailofbits/ruzzy/actions/workflows/test.yml)
[![Gem Version](https://img.shields.io/gem/v/ruzzy)](https://rubygems.org/gems/ruzzy)

A coverage-guided fuzzer for both pure Ruby code and Ruby [C extensions](https://ruby-doc.org/3.3.0/extension_rdoc.html).
A coverage-guided fuzzer for pure Ruby code and Ruby [C extensions](https://ruby-doc.org/3.3.0/extension_rdoc.html).

Ruzzy is heavily inspired by Google's [Atheris](https://github.com/google/atheris), a Python fuzzer. Like Atheris, Ruzzy uses [libFuzzer](https://llvm.org/docs/LibFuzzer.html) for its coverage instrumentation and fuzzing engine. Ruzzy also supports [AddressSanitizer](https://clang.llvm.org/docs/AddressSanitizer.html) and [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) when fuzzing C extensions.

Expand Down
2 changes: 1 addition & 1 deletion lib/ruzzy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'pathname'

# A coverage-guided fuzzer for both pure Ruby code and Ruby C extensions
# A coverage-guided fuzzer for pure Ruby code and Ruby C extensions
module Ruzzy
require 'cruzzy/cruzzy'

Expand Down
2 changes: 1 addition & 1 deletion ruzzy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Gem::Specification.new do |s|
s.name = 'ruzzy'
s.version = '0.6.0'
s.summary = 'A coverage-guided fuzzer for both pure Ruby code and Ruby C extensions'
s.summary = 'A coverage-guided fuzzer for pure Ruby code and Ruby C extensions'
s.authors = ['Trail of Bits']
s.email = '[email protected]'
s.files = Dir['lib/**/*.rb'] + Dir['ext/**/*.{rb,c,h}']
Expand Down

0 comments on commit 2702534

Please sign in to comment.