{"id":34106854,"url":"https://github.com/fandango-fuzzer/fandango","last_synced_at":"2026-02-26T13:01:58.487Z","repository":{"id":271697458,"uuid":"843534165","full_name":"fandango-fuzzer/fandango","owner":"fandango-fuzzer","description":"FANDANGO is a language-based fuzzer that leverages formal input specifications (grammars) combined with constraints to generate diverse sets of valid inputs for programs under test.","archived":false,"fork":false,"pushed_at":"2026-02-24T22:57:28.000Z","size":37487,"stargazers_count":105,"open_issues_count":44,"forks_count":15,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-25T00:52:43.447Z","etag":null,"topics":["fuzzing","grammar-based-fuzzing","search-based-software-testing"],"latest_commit_sha":null,"homepage":"https://fandango-fuzzer.github.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fandango-fuzzer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/Contributing.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-16T18:17:32.000Z","updated_at":"2026-02-24T10:21:57.000Z","dependencies_parsed_at":"2026-02-10T13:02:36.615Z","dependency_job_id":null,"html_url":"https://github.com/fandango-fuzzer/fandango","commit_stats":null,"previous_names":["fandango-fuzzer/fandango"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/fandango-fuzzer/fandango","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fandango-fuzzer%2Ffandango","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fandango-fuzzer%2Ffandango/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fandango-fuzzer%2Ffandango/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fandango-fuzzer%2Ffandango/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fandango-fuzzer","download_url":"https://codeload.github.com/fandango-fuzzer/fandango/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fandango-fuzzer%2Ffandango/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29860109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fuzzing","grammar-based-fuzzing","search-based-software-testing"],"created_at":"2025-12-14T18:03:57.152Z","updated_at":"2026-02-26T13:01:58.482Z","avatar_url":"https://github.com/fandango-fuzzer.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to Fandango!\n\n[![PyPI Release](https://img.shields.io/pypi/v/fandango-fuzzer)](https://pypi.org/project/fandango-fuzzer/) [![Last Release](https://img.shields.io/github/release-date/fandango-fuzzer/fandango)](https://github.com/fandango-fuzzer/fandango/releases)\n[![Tests](https://github.com/fandango-fuzzer/fandango/actions/workflows/python-tests.yml/badge.svg)](https://github.com/fandango-fuzzer/fandango/actions/workflows/python-tests.yml) [![Code Quality Checks](https://github.com/fandango-fuzzer/fandango/actions/workflows/code-checks.yml/badge.svg)](https://github.com/fandango-fuzzer/fandango/actions/workflows/code-checks.yml) [![CodeQL Analysis](https://github.com/fandango-fuzzer/fandango/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/fandango-fuzzer/fandango/actions/workflows/github-code-scanning/codeql) [![PyPI Downloads](https://img.shields.io/pypi/dm/fandango-fuzzer)](https://pypi.org/project/fandango-fuzzer/) [![PyPI Downloads](https://static.pepy.tech/badge/fandango-fuzzer)](https://pepy.tech/projects/fandango-fuzzer) [![GitHub stars](https://img.shields.io/github/stars/fandango-fuzzer/fandango)](https://github.com/fandango-fuzzer/fandango/stargazers)\n\n\u003e **Fandango** is a powerful generator of inputs and interactions designed for software testing. Given the specification of a program's input or interaction language, Fandango quickly generates a myriad of valid inputs to test your systems.\n\n### ✨ Expressive \u0026 Flexible Specifications\nFandango's specification language combines a **grammar** with **constraints written in Python**, making it incredibly expressive. \n* **Custom Testing Goals:** Define exactly what you need. If you require your inputs to have particular values or follow specific distributions, you can express these testing goals directly in Fandango right out of the box.\n\n### 🚀 Versatile Modes of Operation\nFandango adapts to your workflow by supporting multiple operating modes:\n* **Black-Box Fuzzing (Default):** Generate inputs directly from a `.fan` Fandango specification file.\n* **Input Mutation:** Feed Fandango your sample inputs, and it will mutate them to obtain more complex and realistic test cases.\n* **Protocol Fuzzing:** Generate dynamic interactions. Fandango can act as a client or server, producing and reacting to interactions according to your protocol specifications.\n\n### 🧠 Under the Hood\nFandango comes as a portable Python program, meaning it runs easily on a large variety of platforms. To produce its inputs, it leverages sophisticated **evolutionary algorithms**. It starts with a population of random inputs and systematically evolves them through mutations and cross-overs until they perfectly fulfill your given constraints.\n\n### 🗺️ Road to 2026\nFandango is in active development! We are constantly expanding its capabilities. Features planned for 2026 include:\n* Coverage-guided testing\n* Code-directed testing\n* High-diversity input generation\n* ...and much more!\n\n📚 **Ready to dive deeper?** For complete documentation, including tutorials, references, and advanced usage guides, visit the [Fandango Documentation](https://fandango-fuzzer.github.io/).\n\n## License\n\nFandango is licensed under the European Union Public Licence V. 1.2. See the [LICENSE](https://github.com/fandango-fuzzer/fandango/blob/main/LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffandango-fuzzer%2Ffandango","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffandango-fuzzer%2Ffandango","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffandango-fuzzer%2Ffandango/lists"}