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
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.
$ pip install --upgrade fandango-fuzzer
We found that under certain circumstances, the form <digit>+
does not expand to a sufficient number of repetitions. As a workaround, use <digit>{N,M}
instead to specify a number of repetitions between N
and M
.
Updates on submission and grading (see end of page).
$ pip install fandango-fuzzer
We use Pandoc as a Markdown converter. Follow the Installation Instructions.
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
Extend your Fandango spec Markdown.fan
for Markdown that produces inputs with the following features:
_Text_
, *Text*
, __Text__
, **Text**
)# Header
, ## Subheader
, …)[Text](URL)
). Use a fixed URL for now.Read the Pandoc Manual to understand which Markdown features are supported. To see the list of enabled extensions, use
$ pandoc --list-extensions=markdown
Enhance your Fandango spec to make use of generators. Use the Python faker module to produce
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, …
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.
Use constraints to ensure all numbers in tables are between 10 and 1000.
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,
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.
Have your text include citations, rendered as footnotes:
Zamudio et al. introduced Fandango.[^1]
[^1]: Zamudio, Smytzek, Zeller: The Fandango Book, 2025
faker
module to produce author names.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.
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.
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.