Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 1 KB

README.textile

File metadata and controls

26 lines (14 loc) · 1 KB

Avro Fuzzer

Author: Patrick Hunt (follow me on twitter)

Summary

This project fuzzes avro by generating a schema and then using it to perform RPCs.

What’s Apache ZooKeeper?

From the official site: “ZooKeeper is a high-performance coordination service for distributed applications.”

It exposes common services – such as naming, configuration management, synchronization, and group services – in a simple interface so you don’t have to write them from scratch. You can use it off-the-shelf to implement consensus, group management, leader election, and presence protocols.

License

This project is licensed under the Apache License Version 2.0

favro.py

There are two main components, the fuzzer and the tester. The fuzzer generates schemas, the tester validates the schema, noting any failures (RPC inputs, schema that failed, error, etc…).

Usage