Andreas Zeller

Andreas Zeller (high resolution photo)

Andreas Zeller is faculty at the CISPA Helmholtz Center for Information Security and professor for Software Engineering at Saarland University. His research on automated debugging, mining software archives, specification mining, and security testing has proven highly influential. Zeller is one of the few researchers to have received two ERC Advanced Grants, most recently for his S3 project. Zeller is an ACM Fellow and holds an ACM SIGSOFT Outstanding Research Award.

Mail:  andreas.zeller@cispa.de
Phone:  +49 681 87083-1001
Bluesky:  @andreaszeller.bsky.social
Mastodon:  @AndreasZeller@mastodon.social
Linkedin:  andreaszeller
GitHub:  andreas-zeller

Hosted on GitHub Pages — Theme by orderedlist

Fuzzing with Fandango – Task Sheet

Your Task

Your task is to create a Markdown fuzzer – that is, a tool that creates inputs for a Markdown processor such as Pandoc. We start with simple Markdown syntax and end with a generator that creates full-fledged papers. Use the Fandango Fuzzer for this task.

News (March 12, 2025)

$ pip install --upgrade fandango-fuzzer

Installing Fandango

  1. Install Python. See the specific instructions for your operating system on how to do this.
  2. From the command line, run
$ pip install fandango-fuzzer

Installing Pandoc

We use Pandoc as a Markdown converter. Follow the Installation Instructions.

First Steps

Create a file Markdown.fan with these contents:

<start> ::= "Some random text: " <random_text>
<random_text> ::= <printable>+

Use Fandango to fuzz inputs:

$ fandango fuzz -f Markdown.fan -n 10

Send the input to a Markdown processing tool such as Pandoc; redirect its output to a file that you can open in a browser.

$ fandango fuzz -f Markdown.fan -n 10 pandoc --to html > output.html
$ open output.html

Or create a LaTeX document from it:

$ fandango fuzz -f Markdown.fan -n 10 pandoc --to latex > output.tex
$ pdflatex output

Task 1: Basic Markdown (10%)

Extend your Fandango spec Markdown.fan for Markdown that produces inputs with the following features:

Read the Pandoc Manual to understand which Markdown features are supported. To see the list of enabled extensions, use

$ pandoc --list-extensions=markdown

Task 2: Fakers (10%)

Enhance your Fandango spec to make use of generators. Use the Python faker module to produce

Task 3: Some Natural Text (10%)

Create a sub-grammar that creates random English sentences. Have rules and plenty of alternatives for subjects, verbs, objects, conjunctions, etc. Combine this with the faker module to obtain names, places, …

Task 4: Tables (10%)

Enhance your Fandango spec to produce Markdown tables. Create tables with a configurable, but fixed number of rows and columns; use <row>{N} to repeat a row N times. Fill the tables with numbers.

Task 5: Constraints (10%)

Use constraints to ensure all numbers in tables are between 10 and 1000.

Task 6: Cross-References (10%)

Create references to headers. A Header ### My Awesome Section can be referenced by taking the title, converting all letters to lowercase, and replacing all non-letters with spaces: Read [my awesome section](my-awesome-section).

For this,

  1. create a generator for headers that saves the reference in a table;
  2. create a second generator for references that takes a reference from the table.

Task 7: Math (10%)

Because it’s fun: Create a sub-grammar that produces LaTeX math formulas ($...$). Use pandoc --to latex to create output that you can run through LaTeX.

Be sure to create the most complex formulas ever seen.

Task 8: Citations (10%)

Have your text include citations, rendered as footnotes:

Zamudio et al. introduced Fandango.[^1]

[^1]: Zamudio, Smytzek, Zeller: The Fandango Book, 2025

Task 9: A Paper Generator (20%)

Put all the above together to create a random scientific paper in Markdown (and then LaTeX, and then PDF).

Papers will be graded on creativity as well as syntactic and semantic similarity with real papers. The best generated paper submitted by Thursday, 16:30 (end of course) will get an award.

Task 10: Large Language Models (Bonus)

For the abstract of the above paper, create a grammar that creates a random scientific-sounding title; then ask an LLM of your choice to create an abstract for it. Integrate the interaction into the Markdown.fan file.

Submitting your Work

When you’re done, submit the Markdown.fan file (as well as any generated PDFs) at https://forms.gle/vaGX976kqtKQEoo96.

Please submit

Your grade will be a percentage 0-100%; see the percentages for the individual tasks.