CyberChef Intro

1. Task Description

Please find all e-mail addresses from this url using CyberChef.

https://deutschschweiz.swisswine.ch/de/produzent?page=1

Describe how you were able to filter the e-mail addresses via CyberChef and include your recipe in the
report.

2. Solution

  1. Open Webbrowser and open the given URL
  2. View and copy page source

  1. Paste source code to input field in CyberChef

  2. Use the recipe Extract email adresses in combination with Unique and check the output:

    //cdn.jsdelivr.net/npm/bootstrap@3.3.7
    /bootstrap@3.3.7
    deutschschweiz@swisswine.ch
    info@andreywein.ch
    info@pelizzatti-weine.ch
    info@schottweine.ch
    kbaumgartner@gmx.net
    info@kramer-weine.ch
    most.bachmann@bluewin.ch
    info@weingut-bachmann.ch
    michaelmeyer@badosterfingen.ch
    wylade@baertsch-weine.ch
    g.werffeli@hispeed.ch

  3. First two lines are from the bootstrap frontend-CSS Framework and can be ignored. I get a total of 11
    email adresses back. Let’s double check that with the following plugin for google chrome:
    https://chrome.google.com/webstore/detail/email-extractor/jdianbbpnakhcmfkcckaboohfgnngfcc/related

  4. Cyberchef Recipe

    Extract_email_addresses(true)
    Unique(‚Line feed‘)

PDF Report:
Cyberchef#1