/* Copyright (c) 2015 Brian R. Bondy. Distributed under the MPL2 license.
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef LISTS_MALWARE_H_
#define LISTS_MALWARE_H_

#include <vector>
#include "../filter_list.h"

const std::vector<FilterList> malware_lists = {
  FilterList({
    "AE08317A-778F-4B95-BC12-7E78C1FB26A3",
    "https://raw.githubusercontent.com/Dawsey21/Lists/master/adblock-list.txt",
    "Spam404 Domain Blacklist",
    {},
    "http://www.spam404.com/domain-blacklist.html"
  }), FilterList({
    // This list has a filtering function defined
    "FBB430E8-3910-4761-9373-840FC3B43FF2",
    "https://s3.amazonaws.com/lists.disconnect.me/simple_malware.txt",
    "Disconnect Simple Malware",
    {},
    "https://disconnect.me/",
  })
};

#endif  // LISTS_MALWARE_H_
