remove db seed, open-source db dump

until API is ready, I'll occasionally dump the db to csv in the spirit of open-source
This commit is contained in:
Collin M. Barrett 2017-11-04 10:33:48 -05:00
parent bdea77693f
commit f5e2e717bb
21 changed files with 527 additions and 4878 deletions

View file

@ -1,51 +0,0 @@
{
"EmailAddress": "john.smith@protonmail.com",
"FilterLists": [
{
"Description": "A sample list to filter out advertisements.",
"DescriptionSourceUrl": "https://mysample.list/advertisements",
"DonateUrl": "https://mysample.list/donate/",
"EmailAddress": "contact@mysample.list",
"ForumUrl": "https://mysample.list/forum/",
"HomeUrl": "https://mysample.list/",
"IssuesUrl": "https://github.com/johnsmith/mysamplelist/issues",
"FilterListLanguages": null,
"FilterListRules": null,
"FilterListSoftware": null,
"LicenseId": null,
"MaintainerId": null,
"Name": "My Sample Advertisement Filter List",
"SubmissionUrl": null,
"ViewUrl": "https://mysample.list/list.txt",
"Id": 0,
"CreatedDateUtc": "0001-01-01T00:00:00",
"ModifiedDateUtc": "0001-01-01T00:00:00"
},
{
"Description": "A sample list to filter out malware.",
"DescriptionSourceUrl": "https://mysample.list/malware",
"DonateUrl": "https://mysample.list/donate/",
"EmailAddress": "contact@mysample.list",
"ForumUrl": "https://mysample.list/forum/",
"HomeUrl": "https://mysample.list/",
"IssuesUrl": "https://github.com/johnsmith/mysamplelist/issues",
"FilterListLanguages": null,
"FilterListRules": null,
"FilterListSoftware": null,
"LicenseId": null,
"MaintainerId": null,
"Name": "My Sample Malware Filter List",
"SubmissionUrl": null,
"ViewUrl": "https://mysample.list/list.txt",
"Id": 0,
"CreatedDateUtc": "0001-01-01T00:00:00",
"ModifiedDateUtc": "0001-01-01T00:00:00"
}
],
"HomeUrl": "https://johnsmith.com",
"Name": "John Smith",
"TwitterHandle": "@johnsmith",
"Id": 0,
"CreatedDateUtc": "0001-01-01T00:00:00",
"ModifiedDateUtc": "0001-01-01T00:00:00"
}

View file

@ -1,498 +0,0 @@
{
"definitions": {
"FilterList": {
"type": [
"object",
"null"
],
"properties": {
"Description": {
"type": [
"string",
"null"
]
},
"DescriptionSourceUrl": {
"type": [
"string",
"null"
]
},
"DonateUrl": {
"type": [
"string",
"null"
]
},
"EmailAddress": {
"type": [
"string",
"null"
]
},
"ForumUrl": {
"type": [
"string",
"null"
]
},
"HomeUrl": {
"type": [
"string",
"null"
]
},
"IssuesUrl": {
"type": [
"string",
"null"
]
},
"FilterListLanguages": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListLanguage"
}
},
"FilterListRules": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListRule"
}
},
"FilterListSoftware": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListSoftware"
}
},
"LicenseId": {
"type": [
"integer",
"null"
]
},
"MaintainerId": {
"type": [
"integer",
"null"
]
},
"Name": {
"type": [
"string",
"null"
]
},
"SubmissionUrl": {
"type": [
"string",
"null"
]
},
"ViewUrl": {
"type": [
"string",
"null"
]
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"Description",
"DescriptionSourceUrl",
"DonateUrl",
"EmailAddress",
"ForumUrl",
"HomeUrl",
"IssuesUrl",
"FilterListLanguages",
"FilterListRules",
"FilterListSoftware",
"LicenseId",
"MaintainerId",
"Name",
"SubmissionUrl",
"ViewUrl",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"FilterListLanguage": {
"type": [
"object",
"null"
],
"properties": {
"FilterListId": {
"type": "integer"
},
"FilterList": {
"$ref": "#/definitions/FilterList"
},
"LanguageId": {
"type": "integer"
},
"Language": {
"$ref": "#/definitions/Language"
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"FilterListId",
"FilterList",
"LanguageId",
"Language",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"FilterListRule": {
"type": [
"object",
"null"
],
"properties": {
"FilterListId": {
"type": "integer"
},
"FilterList": {
"$ref": "#/definitions/FilterList"
},
"RuleId": {
"type": "integer"
},
"Rule": {
"$ref": "#/definitions/Rule"
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"FilterListId",
"FilterList",
"RuleId",
"Rule",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"FilterListSoftware": {
"type": [
"object",
"null"
],
"properties": {
"FilterListId": {
"type": "integer"
},
"FilterList": {
"$ref": "#/definitions/FilterList"
},
"SoftwareId": {
"type": "integer"
},
"Software": {
"$ref": "#/definitions/Software"
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"FilterListId",
"FilterList",
"SoftwareId",
"Software",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"Language": {
"type": [
"object",
"null"
],
"properties": {
"FilterListLanguages": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListLanguage"
}
},
"Iso6391": {
"type": [
"string",
"null"
]
},
"Iso6392": {
"type": [
"string",
"null"
]
},
"Iso6392B": {
"type": [
"string",
"null"
]
},
"Iso6392T": {
"type": [
"string",
"null"
]
},
"Iso6393": {
"type": [
"string",
"null"
]
},
"LocalName": {
"type": [
"string",
"null"
]
},
"Name": {
"type": [
"string",
"null"
]
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"FilterListLanguages",
"Iso6391",
"Iso6392",
"Iso6392B",
"Iso6392T",
"Iso6393",
"LocalName",
"Name",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"Rule": {
"type": [
"object",
"null"
],
"properties": {
"FilterListRules": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListRule"
}
},
"Raw": {
"type": [
"string",
"null"
]
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"FilterListRules",
"Raw",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
},
"Software": {
"type": [
"object",
"null"
],
"properties": {
"DownloadUrl": {
"type": [
"string",
"null"
]
},
"HomeUrl": {
"type": [
"string",
"null"
]
},
"FilterListSoftware": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterListSoftware"
}
},
"Name": {
"type": [
"string",
"null"
]
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"DownloadUrl",
"HomeUrl",
"FilterListSoftware",
"Name",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
}
},
"type": "object",
"properties": {
"EmailAddress": {
"type": [
"string",
"null"
]
},
"FilterLists": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/FilterList"
}
},
"HomeUrl": {
"type": [
"string",
"null"
]
},
"Name": {
"type": [
"string",
"null"
]
},
"TwitterHandle": {
"type": [
"string",
"null"
]
},
"Id": {
"type": "integer"
},
"CreatedDateUtc": {
"type": "string",
"format": "date-time"
},
"ModifiedDateUtc": {
"type": "string",
"format": "date-time"
}
},
"required": [
"EmailAddress",
"FilterLists",
"HomeUrl",
"Name",
"TwitterHandle",
"Id",
"CreatedDateUtc",
"ModifiedDateUtc"
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

307
data/filterlists.csv Normal file
View file

@ -0,0 +1,307 @@
Id,"CreatedDateUtc","Description","DescriptionSourceUrl","DonateUrl","EmailAddress","ForumUrl","HomeUrl","IssuesUrl",MaintainerId,"ModifiedDateUtc","Name","ViewUrl",LicenseId,"SubmissionUrl","DiscontinuedDate",SyntaxId
1,"2017-10-28 15:01:30","A filter list that blocks mobile advertisements and trackers on Japanese properties",NULL,NULL,NULL,NULL,"https://280blocker.net",NULL,2,"2017-11-04 10:00:25","280 Blocker","https://280blocker.net/files/280blocker_adblock.txt",1,"https://docs.google.com/forms/d/e/1FAIpQLScNeZhFrFZt9GhIVGdThGz7oyepcNRKuOi5PJDnsC-awxTeOQ/viewform",NULL,3
2,"2017-10-28 15:01:30","Mute is an AdBlock Plus filter for user comments. In the same way that AdBlock hides ads, AdBlock can use this filter to hide user-generated comments, allowing you to browse the Internet with less stupidity clawing at your eyeballs.","https://mute.bradconte.com/",NULL,NULL,NULL,"https://mute.bradconte.com/","https://github.com/B-Con/mute/issues",3,"2017-11-04 10:01:32","Mute","https://mute.bradconte.com/mute.txt",2,NULL,NULL,3
3,"2017-10-28 15:01:30","A hosts file to block advertisements and trackers designed for Android","",NULL,NULL,"https://forum.xda-developers.com/showthread.php?t=1916098","https://forum.xda-developers.com/showthread.php?t=1916098",NULL,4,"2017-11-04 10:02:33","MoaAB: Mother of All AD-BLOCKING","https://adblock.mahakala.is/",3,NULL,NULL,1
4,"2017-10-28 15:01:30","A hosts file blocking known malware, spyware, virus, shock sites, etc.","https://github.com/michaeltrimm/hosts-blocking",NULL,NULL,NULL,"https://github.com/michaeltrimm/hosts-blocking","https://github.com/michaeltrimm/hosts-blocking/issues",5,"2017-11-04 10:02:51","Hosts Blocking","https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt",2,NULL,NULL,1
5,"2017-10-28 15:01:30","A list to keep people from knowing youve read their Facebook message","https://adblockplus.org/blog/how-to-keep-people-from-knowing-you-ve-read-their-facebook-message","https://adblockplus.org/en/donate",NULL,"https://adblockplus.org/forum/index.php","https://adblockplus.org/blog/how-to-keep-people-from-knowing-you-ve-read-their-facebook-message",NULL,6,"2017-11-04 10:02:54","Message \"Seen\" Remover for Facebook","https://easylist-downloads.adblockplus.org/message_seen_remover_for_facebook.txt",4,NULL,NULL,3
6,"2017-10-28 15:01:30","A filter list that blocks advertisements and trackers on Japanese properties",NULL,NULL,NULL,NULL,"https://github.com/mayve/private-adblock-filters","https://github.com/mayve/private-adblock-filters/issues",8,"2017-11-04 10:03:03","Private Adblock Filters","https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt",5,NULL,NULL,3
7,"2017-10-28 15:01:30","The Malware URLs in the 'gray area.' To be used by security researchers, anti-malware researchers, etc. It can also be used by individuals to protect themselves. The 'gray area' is an area where many malware URLs exists, but there is also a big number of false positives as the gray area is the one where only 2 or 3 pieces of evidence were discovered. The 'gray area' should not be used for blocking domains or URLs, it's published only with the aim of helping malware researchers.","http://malwareurls.joxeankoret.com/",NULL,"info@joxeankoret.com",NULL,"http://malwareurls.joxeankoret.com/",NULL,9,"2017-11-04 10:13:18","Malware URLs Gray Area","http://malwareurls.joxeankoret.com/grayarea.txt",2,NULL,"2015-07-30 06:52:48.000000",3
8,"2017-10-28 15:01:30","The domains of Malware URLs to be used by security researchers, anti-malware researchers, etc. It can also be used by individuals to protect themselves.","http://malwareurls.joxeankoret.com/",NULL,"info@joxeankoret.com",NULL,"http://malwareurls.joxeankoret.com/",NULL,9,"2017-11-04 10:13:21","Malware URLs Domains","http://malwareurls.joxeankoret.com/domains.txt",2,NULL,"2015-07-30 06:52:48.000000",2
9,"2017-10-28 15:01:30","A full set of Malware URLs to be used by security researchers, anti-malware researchers, etc. It can also be used by individuals to protect themselves.","http://malwareurls.joxeankoret.com/",NULL,"info@joxeankoret.com",NULL,"http://malwareurls.joxeankoret.com/",NULL,9,"2017-11-04 10:13:23","Malware URLs","http://malwareurls.joxeankoret.com/normal.txt",2,NULL,"2015-07-30 06:52:48.000000",3
10,"2017-10-28 15:01:30","Blocks malware.",NULL,NULL,NULL,"https://www.malwaredomainlist.com/forums/","https://www.malwaredomainlist.com/",NULL,NULL,"2017-10-28 15:01:30","Malware Domain List","https://www.malwaredomainlist.com/hostslist/hosts.txt",NULL,NULL,NULL,NULL
11,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#ListeFR\">Liste FR</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Liste FR + EasyList","https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt",NULL,NULL,NULL,NULL
12,"2017-10-28 15:01:30","Liste FR is an [EasyList] affiliated filter list written by Lian, Crits and smed79 that specifically removes adverts on French language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"listefr.adblock@gmail.com","https://forums.lanik.us/viewforum.php?f=91","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:30","Liste FR","https://easylist-downloads.adblockplus.org/liste_fr.txt",NULL,NULL,NULL,NULL
13,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#ListeAR\">Liste AR</a>, <a href=\"https://filterlists.com/#ListeFR\">Liste FR</a>, and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Liste AR + Liste FR + EasyList","https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt",NULL,NULL,NULL,NULL
14,"2017-10-28 15:01:30","Liste AR is an [EasyList] affiliated filter list written by smed79 and Crits that specifically removes adverts on Arabic language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"liste.ar.adblock@gmail.com","https://forums.lanik.us/viewforum.php?f=98","https://code.google.com/archive/p/liste-ar-adblock/",NULL,NULL,"2017-10-28 15:01:30","Liste AR","https://easylist-downloads.adblockplus.org/Liste_AR.txt",NULL,NULL,NULL,NULL
15,"2017-10-28 15:01:30","Filter that fixes filtration errors in an alternative way due to limitations of adblockers other than Adguard or those using Webkit content blocker API.","https://raw.githubusercontent.com/SlowMemory/List-KR/master/unbreak.txt",NULL,NULL,NULL,"https://list-kr.github.io/","https://github.com/SlowMemory/List-KR/issues",NULL,"2017-10-28 15:01:30","List-KR Unbreak","https://raw.githubusercontent.com/SlowMemory/List-KR/master/unbreak.txt",NULL,NULL,NULL,NULL
16,"2017-10-28 15:01:30","Filter that enables removing of ads, trackers, and various scripts from websites with Korean content. Based on <a href=\"https://filterlists.com/stale/#Corset\">Corset</a>, <a href=\"https://filterlists.com/regional/#KoreanAdblockList\">Korean Adblock List</a>, <a href=\"https://filterlists.com/regional/#YousList\">YousList</a>.","https://github.com/SlowMemory/List-KR",NULL,NULL,NULL,"https://list-kr.github.io/","https://github.com/SlowMemory/List-KR/issues",NULL,"2017-10-28 15:01:30","List-KR","https://github.com/SlowMemory/List-KR/blob/master/filter.txt",NULL,NULL,NULL,NULL
17,"2017-10-28 15:01:30","Block ads, banners, 3rd party Cookies, 3rd party page counters, web bugs, and even most hijackers.","http://winhelp2002.mvps.org/hosts.htm","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UNHL2VY85PB8N","winhelp2002@gmail.com",NULL,"http://winhelp2002.mvps.org/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","MVPS HOSTS","http://winhelp2002.mvps.org/hosts.txt",NULL,NULL,NULL,NULL
18,"2017-10-28 15:01:30","Blocks advertisements and sponsored posts on LinkedIn.",NULL,NULL,NULL,NULL,"https://github.com/taylr/linkedinsanity","https://github.com/taylr/linkedinsanity/issues",NULL,"2017-10-28 15:01:30","Linkedinsanity Rules","https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt",NULL,NULL,NULL,NULL
19,"2017-10-28 15:01:30","Prevents browser based coin mining from clogging up your resources.","https://github.com/hoshsadiq/adblock-nocoin-list",NULL,NULL,NULL,"https://github.com/hoshsadiq/adblock-nocoin-list","https://github.com/hoshsadiq/adblock-nocoin-list/issues",NULL,"2017-10-28 15:01:30","NoCoin","https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt",NULL,NULL,NULL,NULL
20,"2017-10-28 15:01:30","Removes ads, affiliation ads, and empty boxes on Norwegian sites to produce a cleaner browser experience. Meant to be used on top of general filters.",NULL,"https://www.paypal.me/DandeeSprout","imreeil42@gmail.com",NULL,"https://github.com/DandelionSprout/adfilt/blob/master/ExperimentalNorwegianList.txt","https://github.com/DandelionSprout/adfilt/issues",NULL,"2017-10-28 15:01:30","Norwegian list for tidier websites","https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExperimentalNorwegianList.txt",NULL,NULL,NULL,NULL
21,"2017-10-28 15:01:30","A combined IP blocklist for blocking ransomware.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/RW_IPBL.txt",NULL,NULL,NULL,NULL
22,"2017-10-28 15:01:30","A combined domain blocklist for blocking ransomware.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt",NULL,NULL,NULL,NULL
23,"2017-10-28 15:01:30","Blocks CryptoWall from payment site servers by IP address.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker CryptoWall Ransomware Payment Sites IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/CW_PS_IPBL.txt",NULL,NULL,NULL,NULL
24,"2017-10-28 15:01:30","Blocks CryptoWall from payment site servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker CryptoWall Ransomware Payment Sites Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/CW_PS_DOMBL.txt",NULL,NULL,NULL,NULL
25,"2017-10-28 15:01:30","Blocks CryptoWall from botnet command and control servers by URL.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker CryptoWall Ransomware C2 URL Blocklist","https://ransomwaretracker.abuse.ch/downloads/CW_C2_URLBL.txt",NULL,NULL,NULL,NULL
26,"2017-10-28 15:01:30","Blocks CryptoWall from botnet command and control servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker CryptoWall Ransomware C2 Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/CW_C2_DOMBL.txt",NULL,NULL,NULL,NULL
27,"2017-10-28 15:01:30","A text file with filters to aid in blocking online trackers, for use in a blocker such as uBlock Origin.","https://github.com/metaphoricgiraffe/tracking-filters",NULL,NULL,NULL,"https://github.com/metaphoricgiraffe/tracking-filters","https://github.com/metaphoricgiraffe/tracking-filters/issues",NULL,"2017-10-28 15:01:30","Privacy Filters","https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt",NULL,NULL,NULL,NULL
28,"2017-10-28 15:01:30","The Quiet list blocks all other notices regardless of their size or obnoxiousness. Simple two- or three-word links to privacy pages aren't blocked (such as links in a page footer), but a lengthy paragraph mid-page will be.","https://github.com/liamja/Prebake",NULL,"cookies@prebake.eu",NULL,"http://prebake.eu/","https://github.com/liamja/Prebake/issues",NULL,"2017-10-28 15:01:30","Prebake Quiet","https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt",NULL,NULL,NULL,NULL
29,"2017-10-28 15:01:30","Prebake is an Adblock filter subscription that blocks large, obtrusive cookie notices. These notices either consume a considerable amount of screen real estate or popup and distract the viewers attention, which can be just as annoying as ads.","http://prebake.eu/",NULL,"cookies@prebake.eu",NULL,"http://prebake.eu/","https://github.com/liamja/Prebake/issues",NULL,"2017-10-28 15:01:30","Prebake Obtrusive","https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt",NULL,NULL,NULL,NULL
30,"2017-10-28 15:01:30","Polish filter the type of annoyances blocking windows to encourage registration or news, promotions and discounts. It blocks the widgets that misinformation and distract, trying to force push your product.","https://github.com/azet12/PopupBlocker",NULL,"kadrep@outlook.com",NULL,"https://azet12.github.io/KAD/","https://github.com/azet12/PopupBlocker/issues",NULL,"2017-10-28 15:01:30","Popup Blocker","https://raw.githubusercontent.com/azet12/PopupBlocker/master/PPB.txt",NULL,NULL,NULL,NULL
31,"2017-10-28 15:01:30","Contains a list of elements of advertising, such as banners or flash animations, the most commonly used on Polish websites.","http://niecko.pl/adblock/",NULL,NULL,NULL,"http://niecko.pl/adblock/",NULL,NULL,"2017-10-28 15:01:30","PLgeneral","http://www.niecko.pl/adblock/adblock.txt",NULL,NULL,NULL,NULL
32,"2017-10-28 15:01:30","Block advertisements.",NULL,NULL,"pgl@yoyo.org",NULL,"https://pgl.yoyo.org/adservers/",NULL,NULL,"2017-10-28 15:01:30","Peter Lowe's List","https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext",NULL,NULL,NULL,NULL
33,"2017-10-28 15:01:30","Adblock filter for obtrusive overlay (pop up) elements and various other annoying elements on websites.","https://github.com/LordBadmintonofYorkshire/Overlay-Blocker",NULL,NULL,NULL,"https://github.com/LordBadmintonofYorkshire/Overlay-Blocker","https://github.com/LordBadmintonofYorkshire/Overlay-Blocker/issues",NULL,"2017-10-28 15:01:30","Overlay Blocker","https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt",NULL,NULL,NULL,NULL
34,"2017-10-28 15:01:30","OpenPhish uses proprietary Artificial Intelligence algorithms to automatically identify zero-day phishing sites and provide comprehensive, actionable, real-time threat intelligence.","https://openphish.com/",NULL,"contact@openphish.com",NULL,"https://openphish.com/",NULL,NULL,"2017-10-28 15:01:30","OpenPhish Phishing Intelligence Community Feed","https://openphish.com/feed.txt",NULL,NULL,NULL,NULL
35,"2017-10-28 15:01:30","Blocks trackers.",NULL,NULL,NULL,NULL,"https://github.com/quidsup/notrack","https://github.com/quidsup/notrack/issues",NULL,"2017-10-28 15:01:30","NoTrack Blocklist","https://raw.githubusercontent.com/quidsup/notrack/master/trackers.txt",NULL,NULL,NULL,NULL
36,"2017-10-28 15:01:30","A personal filter list. Each host is either an ad, phishing, malicious, analytics, or clickbait.","https://github.com/genediazjr/nopelist",NULL,NULL,NULL,"https://github.com/genediazjr/nopelist","https://github.com/genediazjr/nopelist/issues",NULL,"2017-10-28 15:01:30","Nopelist","https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt",NULL,NULL,NULL,NULL
37,"2017-10-28 15:01:30","Blocks Locky from botnet command and control servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Locky Ransomware C2 Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/LY_C2_DOMBL.txt",NULL,NULL,NULL,NULL
38,"2017-10-28 15:01:30","AdBlock list for blocking 'how i can help you?' widgets.","https://github.com/Rpsl/adblock-leadgenerator-list",NULL,NULL,NULL,"https://github.com/Rpsl/adblock-leadgenerator-list","https://github.com/Rpsl/adblock-leadgenerator-list/issues",NULL,"2017-10-28 15:01:30","Lead Generator","https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt",NULL,NULL,NULL,NULL
39,"2017-10-28 15:01:30","Latvian List is an affiliated filter list written by anonymous74100 that specifically removes adverts on Latvian language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"latvian-list@googlegroups.com","https://forums.lanik.us/viewforum.php?f=99","https://notabug.org/latvian-list/adblock-latvian",NULL,NULL,"2017-10-28 15:01:30","Latvian List","https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt",NULL,NULL,NULL,NULL
40,"2017-10-28 15:01:30","Sites engaged in the use of misleading marketing tactics.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts MMT","https://hosts-file.net/mmt.txt",NULL,NULL,NULL,NULL
41,"2017-10-28 15:01:30","Sites engaged in browser hijacking or other forms of hijacking (OS services, bandwidth, DNS, etc.).","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts HJK","https://hosts-file.net/hjk.txt",NULL,NULL,NULL,NULL
42,"2017-10-28 15:01:30","Special classification for persons caught spamming the hpHosts forums.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts HFS","https://hosts-file.net/hfs.txt",NULL,NULL,NULL,NULL
43,"2017-10-28 15:01:30","Sites engaged in astroturfing (otherwise known as grass roots marketing) or spamming.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts GRM","https://hosts-file.net/grm.txt",NULL,NULL,NULL,NULL
44,"2017-10-28 15:01:30","Sites engaged in the selling or distribution of bogus or fraudulent applications and/or provision of fraudulent services.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts FSA","https://hosts-file.net/fsa.txt",NULL,NULL,NULL,NULL
45,"2017-10-28 15:01:30","Sites engaged in the housing, development or distribution of exploits, including but not limited to exploitation of browser, software (inclusive of website software such as CMS), operating system exploits aswell as those engaged in exploits via social engineering.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts EXP","https://hosts-file.net/exp.txt",NULL,NULL,NULL,NULL
46,"2017-10-28 15:01:30","Sites engaged in malware distribution.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts EMD","https://hosts-file.net/emd.txt",NULL,NULL,NULL,NULL
47,"2017-10-28 15:01:30","This classification is assigned for domains being used for advert or tracking purposes.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts ATS","https://hosts-file.net/ad_servers.txt",NULL,NULL,NULL,NULL
48,"2017-10-28 15:01:30","hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.","https://www.hosts-file.net/",NULL,NULL,NULL,"https://www.hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts","https://www.hosts-file.net/download/hosts.txt",NULL,NULL,NULL,NULL
49,"2017-10-28 15:01:30","Japanese ad servers hosts file.",NULL,NULL,NULL,"http://potato.2ch.net/test/read.cgi/android/1450730522/","https://sites.google.com/site/hosts2ch/",NULL,NULL,"2017-10-28 15:01:30","Hosts2ch","https://www.cubby.com/pl/ja.txt/_447d3ae976114d51b01bc83b7a1a77eb",NULL,NULL,NULL,NULL
50,"2017-10-28 15:01:30","We will blacklist domains that fall into any of the following categories: scams/phishing/malware/malvertising/exploits - and other general threats.","https://www.hexxiumcreations.com/projects/malicious-domain-blocking/",NULL,"support@hexxiumcreations.com",NULL,"https://www.hexxiumcreations.com/projects/malicious-domain-blocking/","https://github.com/HexxiumCreations/threat-list/issues",NULL,"2017-10-28 15:01:30","Hexxium Creations Threat List","https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt",NULL,NULL,NULL,NULL
51,"2017-10-28 15:01:30","Filter for advertisements on Greek sites.","https://www.void.gr/kargig/blog/greek-adblock-plus-filter/",NULL,NULL,NULL,"https://www.void.gr/kargig/blog/greek-adblock-plus-filter/","https://github.com/kargig/greek-adblockplus-filter/issues",NULL,"2017-10-28 15:01:30","Greek AdBlock Filter","https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt",NULL,NULL,NULL,NULL
52,"2017-10-28 15:01:30","Block all well known privacy trackers. (<a href=\"https://filterlists.com/#EasyList\">EasyList</a> + <a href=\"https://filterlists.com/#EasyPrivacy\">EasyPrivacy</a> + <a href=\"https://filterlists.com/#FanboysSocialBlockingList\">Fanboy's Social Blocking List</a>)","https://web.archive.org/web/20160425221243/http://gnuzilla.gnu.org/filters/blacklist.txt",NULL,"bug-gnuzilla@gnu.org",NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","GNU Blacklist","https://web.archive.org/web/20160425221243/http://gnuzilla.gnu.org/filters/blacklist.txt",NULL,NULL,NULL,NULL
53,"2017-10-28 15:01:30","Blocks Japanese regional mobile advertisements and trackers.",NULL,NULL,NULL,NULL,"http://gmbk0.tumblr.com/",NULL,NULL,"2017-10-28 15:01:30","gmbk0's AdAway Hosts for Android","https://web.archive.org/web/20140719043102/https://gmbksfilters.googlecode.com/hg/hosts_adonly.txt",NULL,NULL,NULL,NULL
54,"2017-10-28 15:01:30","Block ads with /etc/hosts.","https://web.archive.org/web/20160221135808/http://adblock.gjtech.net/?format=adblock-plus",NULL,NULL,NULL,"https://www.gjtech.net/",NULL,NULL,"2017-10-28 15:01:30","G&J Hosts","https://web.archive.org/web/20160221135711/http://adblock.gjtech.net/?format=unix-hosts",NULL,NULL,NULL,NULL
55,"2017-10-28 15:01:30","The following hosts were added to hpHosts AFTER the last full release.","https://hosts-file.net/hphosts-partial.txt",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts Partial","https://hosts-file.net/hphosts-partial.txt",NULL,NULL,NULL,NULL
56,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#LatvianList\">Latvian List</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Latvian List + EasyList","https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt",NULL,NULL,NULL,NULL
57,"2017-10-28 15:01:30","Sites engaged in illegal pharmacy activities.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts PHA","https://hosts-file.net/pha.txt",NULL,NULL,NULL,NULL
58,"2017-10-28 15:01:30","Sites engaged in the distribution of Potentially Unwanted Programs.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts PUP","https://hosts-file.net/pup.txt",NULL,NULL,NULL,NULL
59,"2017-10-28 15:01:30","A filter list for Adblock which covers filters for Korean websites.","https://github.com/gfmaster/adblock-korea-contrib",NULL,NULL,NULL,"https://github.com/gfmaster/adblock-korea-contrib","https://github.com/gfmaster/adblock-korea-contrib/issues",NULL,"2017-10-28 15:01:30","Korean Adblock List","https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt",NULL,NULL,NULL,NULL
60,"2017-10-28 15:01:30","Polish hosts file for blocking scams. (Experimental)",NULL,NULL,"kadrep@outlook.com",NULL,"https://azet12.github.io/KAD/","https://github.com/azet12/KAD/issues",NULL,"2017-10-28 15:01:30","KAD Hosts File","https://raw.githubusercontent.com/azet12/KADhosts/master/KADhosts.txt",NULL,NULL,NULL,NULL
61,"2017-10-28 15:01:30","Polish filter Adblock and uBlock locking side-type scam (eg. Subscriptions SMS).","https://github.com/azet12/KAD",NULL,"kadrep@outlook.com",NULL,"https://azet12.github.io/KAD/","https://github.com/azet12/KAD/issues",NULL,"2017-10-28 15:01:30","KAD - Scams","https://raw.githubusercontent.com/azet12/KAD/master/KAD.txt",NULL,NULL,NULL,NULL
62,"2017-10-28 15:01:30","This filter will mainly block affiliate advertising, behavioral advertising, tend embedded script will overload, blog parts.","http://qme.mydns.jp/adblock.html",NULL,NULL,NULL,"http://qme.mydns.jp/adblock.html",NULL,NULL,"2017-10-28 15:01:30","Japanese Site Adblock Filter ver 2","http://qme.mydns.jp/data/AdblockV2.txt",NULL,NULL,NULL,NULL
63,"2017-10-28 15:01:30","This filter will mainly block affiliate advertising, behavioral advertising, tend embedded script will overload, blog parts.","http://qme.mydns.jp/adblock.html",NULL,NULL,NULL,"http://qme.mydns.jp/adblock.html",NULL,NULL,"2017-10-28 15:01:30","Japanese Site Adblock Filter","http://qme.mydns.jp/data/Adblock.txt",NULL,NULL,NULL,NULL
64,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#MalwareDomainList\">Malware Domain List</a> and <a href=\"https://filterlists.com/#Spybot\">Spybot</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Jansal's Hosts Light","https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt",NULL,NULL,NULL,NULL
65,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#MalwareDomainList\">Malware Domain List</a>, <a href=\"https://filterlists.com/#PeterLowesList\">Peter Lowe's List</a>, <a href=\"https://filterlists.com/#Spybot\">Spybot</a>, and <a href=\"https://filterlists.com/#SpywareBlaster\">Spyware Blaster</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Jansal's Hosts","https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts",NULL,NULL,NULL,NULL
66,"2017-10-28 15:01:30","My Adblock Plus filter subscription will block banner ads, flash ads, text-ads, and even completely block some rogue anti-virus and anti-spyware websites preventing infection.","https://www.jabcreations.com/web/adblock-subscription",NULL,NULL,NULL,"https://www.jabcreations.com/web/adblock-subscription",NULL,NULL,"2017-10-28 15:01:30","JAB Creations' Adblock Plus Filter Subscription","http://www.jabcreations.com/downloads/adblock-filters.php",NULL,NULL,NULL,NULL
67,"2017-10-28 15:01:30","Filter any site/subsite who's only purpose is to log your IP.","https://github.com/piperun/iploggerfilter",NULL,NULL,NULL,"https://github.com/piperun/iploggerfilter","https://github.com/piperun/iploggerfilter/issues",NULL,"2017-10-28 15:01:30","iploggerfilter","https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist",NULL,NULL,NULL,NULL
68,"2017-10-28 15:01:30","This filter list for AdBlock removes popup sections on sites that distracts from the main content.","https://ilyakatz.github.io/adblock_filters/",NULL,NULL,NULL,"https://ilyakatz.github.io/adblock_filters/","https://github.com/ilyakatz/adblock_filters/issues",NULL,"2017-10-28 15:01:30","Ilyakatz's Additional Filters for Adblock","https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt",NULL,NULL,NULL,NULL
69,"2017-10-28 15:01:30","Adblock Plus list for Icelandic websites.","http://adblock.gardar.net/",NULL,"adblock@gardar.net",NULL,"http://adblock.gardar.net/",NULL,NULL,"2017-10-28 15:01:30","Icelandic ABP List","http://adblock.gardar.net/is.abp.txt",NULL,NULL,NULL,NULL
70,"2017-10-28 15:01:30","List of filters for Adblock Plus that block cookie notices on European websites.","https://github.com/Rudloff/adblock-imokwithcookies",NULL,NULL,NULL,"https://github.com/Rudloff/adblock-imokwithcookies","https://github.com/Rudloff/adblock-imokwithcookies/issues",NULL,"2017-10-28 15:01:30","I'm OK with Cookies","https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt",NULL,NULL,NULL,NULL
71,"2017-10-28 15:01:30","Get rid of annoying cookie warnings from almost all 'infected' websites!","https://www.kiboke-studio.hr/i-dont-care-about-cookies/",NULL,"info@kiboke-studio.hr",NULL,"https://www.kiboke-studio.hr/i-dont-care-about-cookies/",NULL,NULL,"2017-10-28 15:01:30","I Don't Care about Cookies","https://www.kiboke-studio.hr/i-dont-care-about-cookies/abp/",NULL,NULL,NULL,NULL
72,"2017-10-28 15:01:30","Blocks Hungarian regional advertisements and trackers.",NULL,NULL,"hufilter.adblock@gmail.com",NULL,"https://github.com/szpeter80/hufilter/wiki","https://github.com/szpeter80/hufilter/issues",NULL,"2017-10-28 15:01:30","hufilter","https://raw.githubusercontent.com/szpeter80/hufilter/master/hufilter.txt",NULL,NULL,NULL,NULL
73,"2017-10-28 15:01:30","Sites engaged in the selling, distribution or provision of warez (including but not limited to keygens, serials etc), where such provisions do not contain malware.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts WRZ","https://hosts-file.net/wrz.txt",NULL,NULL,NULL,NULL
74,"2017-10-28 15:01:30","Sites engaged in Phishing.","https://hosts-file.net/?s=classifications",NULL,NULL,"https://forum.hosts-file.net/","https://hosts-file.net/",NULL,NULL,"2017-10-28 15:01:30","hpHosts PSH","https://hosts-file.net/psh.txt",NULL,NULL,NULL,NULL
75,"2017-10-28 15:01:30","Blocks Locky from botnet command and control servers by IP.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Locky Ransomware C2 IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/LY_C2_IPBL.txt",NULL,NULL,NULL,NULL
76,"2017-10-28 15:01:30","Blocks Locky from distribution site servers by URL.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Locky Ransomware Distribution Site URL Blocklist","https://ransomwaretracker.abuse.ch/downloads/LY_DS_URLBL.txt",NULL,NULL,NULL,NULL
77,"2017-10-28 15:01:30","Blocks Locky from payment site servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Locky Ransomware Payment Sites Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/LY_PS_DOMBL.txt",NULL,NULL,NULL,NULL
78,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Gambling + Porn","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts",NULL,NULL,NULL,NULL
79,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Gambling","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts",NULL,NULL,NULL,NULL
80,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts","https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts",NULL,NULL,NULL,NULL
81,"2017-10-28 15:01:30","Windows installers ads sources sites based on <a href=\"https://unchecky.com/\">Unchecky</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:30","UncheckyAds","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts",NULL,NULL,NULL,NULL
82,"2017-10-28 15:01:30","A filterlist with additional filters for uBlock Origin to block third-party, tracking, annoyances and all other unwarranted resources from loading. Contains filters specific to uBlock Origin and some filters that have not yet been added to other filterlists.","https://github.com/uBlock-user/uBO-Personal-Filters",NULL,NULL,NULL,"https://github.com/uBlock-user/uBO-Personal-Filters",NULL,NULL,"2017-10-28 15:01:30","uBO-Personal-Filters","https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt",NULL,NULL,NULL,NULL
83,"2017-10-28 15:01:30","This project was built based on Anti-Adblock Killer (by Reek), but is now significantly different. Anti-Adblock Killer Script was completely re-implemented. Anti-Adblock Killer Filter was mostly copied and concatenated to uBlock Protector List.","https://github.com/jspenguin2017/uBlockProtector",NULL,NULL,NULL,"https://jspenguin2017.github.io/uBlockProtector","https://github.com/jspenguin2017/uBlockProtector/issues",NULL,"2017-10-28 15:01:30","uBlock Protector List","https://raw.githubusercontent.com/jspenguin2017/uBlockProtector/master/uBlockProtectorList.txt",NULL,NULL,NULL,NULL
84,"2017-10-28 15:01:30","uBlock supplement to Adblock & uBlock Polish Filters.",NULL,NULL,"errors@certyficate.it",NULL,"http://www.certyficate.it/","https://github.com/MajkiIT/polish-ads-filter/issues",NULL,"2017-10-28 15:01:30","uBlock Polish Filters - Supplement","https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt",NULL,NULL,NULL,NULL
85,"2017-10-28 15:01:30","A filterlist with additional filters for uBlock Origin. Contains filters specific to uBlock Origin (like popunder filters) and some filters that have not yet been added to other filterlists.","https://github.com/IDKwhattoputhere/uBlock-Filters-Plus",NULL,NULL,NULL,"https://github.com/IDKwhattoputhere/uBlock-Filters-Plus","https://github.com/IDKwhattoputhere/uBlock-Filters-Plus/issues",NULL,"2017-10-28 15:01:30","uBlock Filters Plus","https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt",NULL,NULL,NULL,NULL
86,"2017-10-28 15:01:30","Block sites with skimming scripts.","https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt",NULL,NULL,NULL,"https://github.com/byaka/ublock-antiskimming-list","https://github.com/byaka/ublock-antiskimming-list/issues",NULL,"2017-10-28 15:01:30","uBlock Antiskimming List","https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt",NULL,NULL,NULL,NULL
87,"2017-10-28 15:01:30","Needed to unbreak web sites, mostly because of hosts file-based filters.","https://github.com/uBlockOrigin/uAssets/blob/master/filters/unbreak.txt",NULL,NULL,NULL,"https://github.com/uBlockOrigin/uAssets","https://github.com/uBlockOrigin/uAssets/issues",NULL,"2017-10-28 15:01:30","uAssets Unbreak","https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt",NULL,NULL,NULL,NULL
88,"2017-10-28 15:01:30","Privacy filters for uBlock Origin.",NULL,NULL,NULL,NULL,"https://github.com/uBlockOrigin/uAssets","https://github.com/uBlockOrigin/uAssets/issues",NULL,"2017-10-28 15:01:30","uAssets Privacy","https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt",NULL,NULL,NULL,NULL
89,"2017-10-28 15:01:30","Filters optimized for uBlock.","https://github.com/uBlockOrigin/uAssets/blob/master/filters/filters.txt",NULL,NULL,NULL,"https://github.com/uBlockOrigin/uAssets","https://github.com/uBlockOrigin/uAssets/issues",NULL,"2017-10-28 15:01:30","uAssets Filters","https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt",NULL,NULL,NULL,NULL
90,"2017-10-28 15:01:30","These filters are experimental and may cause breakage. They are being evaluated/fine-tuned for inclusion in the default set of filters.","https://github.com/uBlockOrigin/uAssets/blob/master/filters/experimental.txt",NULL,NULL,NULL,"https://github.com/uBlockOrigin/uAssets","https://github.com/uBlockOrigin/uAssets/issues",NULL,"2017-10-28 15:01:30","uAssets Experimental","https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/experimental.txt",NULL,NULL,NULL,NULL
91,"2017-10-28 15:01:30","To block sites known for delivering adware/crapware. For sites documented to put users at risk of installing adware/crapware etc. The purpose is to at least ensure a user is warned of the risks ahead.","https://github.com/uBlockOrigin/uAssets/blob/master/filters/badware.txt",NULL,NULL,NULL,"https://github.com/uBlockOrigin/uAssets","https://github.com/uBlockOrigin/uAssets/issues",NULL,"2017-10-28 15:01:30","uAssets Badware","https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt",NULL,NULL,NULL,NULL
92,"2017-10-28 15:01:30","The ad server for a list of sites to block ads in Turkish.","https://github.com/bkrcrc/turk-adlist",NULL,NULL,NULL,"https://github.com/bkrcrc/turk-adlist","https://github.com/bkrcrc/turk-adlist/issues",NULL,"2017-10-28 15:01:30","Turk-adlist","https://raw.githubusercontent.com/bkrcrc/turk-adlist/master/hosts",NULL,NULL,NULL,NULL
93,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Gambling + Porn + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts",NULL,NULL,NULL,NULL
94,"2017-10-28 15:01:30","You can leave AdBlock functioning as normal, but the proper tracking of cashback cookies will be allowed on TopCashback and our affiliate network sites only.","https://www.topcashback.com/Help/164",NULL,NULL,NULL,"https://www.topcashback.com/Help/164",NULL,NULL,"2017-10-28 15:01:30","Top Cash Back Adblock Whitelist","https://www.topcashback.com/Misc/AdBlockWhiteList.aspx",NULL,NULL,NULL,NULL
95,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Gambling + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts",NULL,NULL,NULL,NULL
96,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Porn + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts",NULL,NULL,NULL,NULL
97,"2017-10-28 15:01:30","Block all YouTube annoyances.","https://youtube.adblockplus.me/","https://adblockplus.org/en/donate"," subscriptionlist@adblockplus.org",NULL,"https://youtube.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:30","YouTube: Pure Video Experience","https://easylist-downloads.adblockplus.org/yt_annoyances_full.txt",NULL,NULL,NULL,NULL
98,"2017-10-28 15:01:30","Block only other annoyances.","https://youtube.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://youtube.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:30","YouTube: Other Annoyances","https://easylist-downloads.adblockplus.org/yt_annoyances_other.txt",NULL,NULL,NULL,NULL
99,"2017-10-28 15:01:30","Blocks Korean regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://github.com/yous/YousList","https://github.com/yous/YousList/issues",NULL,"2017-10-28 15:01:30","YousList","https://raw.githubusercontent.com/yous/YousList/master/youslist.txt",NULL,NULL,NULL,NULL
100,"2017-10-28 15:01:30","Finnish supplement list for EasyList.","https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt",NULL,NULL,NULL,"https://github.com/wiltteri/subscriptions",NULL,NULL,"2017-10-28 15:01:30","Wiltteri Reborn","https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt",NULL,NULL,NULL,NULL
101,"2017-10-28 15:01:30","Finnish supplement list for EasyList.","https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt",NULL,NULL,NULL,"https://github.com/wiltteri/subscriptions",NULL,NULL,"2017-10-28 15:01:30","Wiltteri","https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt",NULL,NULL,NULL,NULL
102,"2017-10-28 15:01:30","Block annoying web elements and reclaim lost screen real estate to make the web more user friendly!","https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt",NULL,NULL,NULL,"https://github.com/yourduskquibbles/webannoyances","https://github.com/yourduskquibbles/webannoyances/issues",NULL,"2017-10-28 15:01:30","Web Annoyances Ultralist","https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt",NULL,NULL,NULL,NULL
103,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Gambling + Porn + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts",NULL,NULL,NULL,NULL
104,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Porn + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts",NULL,NULL,NULL,NULL
105,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Gambling + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts",NULL,NULL,NULL,NULL
106,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Gambling + Porn","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts",NULL,NULL,NULL,NULL
107,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts",NULL,NULL,NULL,NULL
108,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Porn","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts",NULL,NULL,NULL,NULL
109,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews + Gambling","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts",NULL,NULL,NULL,NULL
110,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Fakenews","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts",NULL,NULL,NULL,NULL
111,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Social","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts",NULL,NULL,NULL,NULL
112,"2017-10-28 15:01:30","Extending and consolidating hosts files from a variety of sources","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/StevenBlack/hosts",NULL,NULL,"2017-10-28 15:01:30","Unified Hosts + Porn","https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts",NULL,NULL,NULL,NULL
113,"2017-10-28 15:01:30","Blocks Japanese regional advertisements and trackers.",NULL,NULL,NULL,NULL,"http://tofukko.r.ribbon.to/abp.html",NULL,NULL,"2017-10-28 15:01:30","Tofu Filter","http://tofukko.r.ribbon.to/Adblock_Plus_list.txt",NULL,NULL,NULL,NULL
114,"2017-10-28 15:01:30","Blocks advertisements and trackers.",NULL,NULL,NULL,NULL,"https://github.com/thoughtconverge/abf",NULL,NULL,"2017-10-28 15:01:30","Thoughtconverge's Custom AdBlock Filters","https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt",NULL,NULL,NULL,NULL
115,"2017-10-28 15:01:30","Web adverts can be simply blocked by using a specially formatted text file called a “Hosts” file which is a list myself and numerous others have painstakingly compiled to now over 60000 (verified) known banner advertising companies and providers along with hostile websites that have been discovered (popup providers, spyware, dialers ,scams etc). This file tells your computer to try to and access itself whenever a banner advert is requested from a server that is in its \"black\" list, but instead of contacting the advert server your computer tries to request itself, and as your machine doesn't contain any adverts (if you are not running a web server) nothing will be shown.","http://hostsfile.mine.nu/",NULL,"wduk10@hotmail.com",NULL,"http://hostsfile.mine.nu/",NULL,NULL,"2017-10-28 15:01:30","The Hosts File Project Hosts","http://hostsfile.mine.nu/hosts0.txt",NULL,NULL,NULL,NULL
116,"2017-10-28 15:01:30","This is a complementary list for RoList with annoyances that are not necessarly banners.","https://www.zoso.ro/pages/rolist2.txt",NULL,"mail@zoso.ro",NULL,"https://www.zoso.ro/rolist/",NULL,NULL,"2017-10-28 15:01:30","ROList2","https://www.zoso.ro/pages/rolist2.txt",NULL,NULL,NULL,NULL
117,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#ROList\">ROList</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","ROList + EasyList","https://easylist-downloads.adblockplus.org/rolist+easylist.txt",NULL,NULL,NULL,NULL
118,"2017-10-28 15:01:30","Romanian supplement for EasyList.","https://adblockplus.org/subscriptions",NULL,"mail@zoso.ro",NULL,"https://www.zoso.ro/rolist/",NULL,NULL,"2017-10-28 15:01:30","ROList","https://www.zoso.ro/pages/rolist.txt",NULL,NULL,NULL,NULL
119,"2017-10-28 15:01:30","Romanian ad block filtering list.","https://github.com/tcptomato/ROad-Block",NULL,"contact@adblock.ro","https://muut.com/i/adblockro/comments","https://www.adblock.ro/","https://github.com/tcptomato/ROad-Block/issues",NULL,"2017-10-28 15:01:30","ROad-Block","https://road.adblock.ro/lista.txt",NULL,NULL,NULL,NULL
120,"2017-10-28 15:01:30","A combined URL blocklist for blocking ransomware.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker URL Blocklist","https://ransomwaretracker.abuse.ch/downloads/RW_URLBL.txt",NULL,NULL,NULL,NULL
121,"2017-10-28 15:01:30","Blocks TorrentLocker from payment site servers by IP address.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TorrentLocker Ransomware Payment Sites IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/TL_PS_IPBL.txt",NULL,NULL,NULL,NULL
122,"2017-10-28 15:01:30","Blocks TorrentLocker from payment site servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TorrentLocker Ransomware Payment Sites Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/TL_PS_DOMBL.txt",NULL,NULL,NULL,NULL
123,"2017-10-28 15:01:30","Blocks TorrentLocker from botnet command and control servers by IP address.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TorrentLocker Ransomware C2 IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/TL_C2_IPBL.txt",NULL,NULL,NULL,NULL
124,"2017-10-28 15:01:30","Blocks TorrentLocker from botnet command and control servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TorrentLocker Ransomware C2 Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/TL_C2_DOMBL.txt",NULL,NULL,NULL,NULL
125,"2017-10-28 15:01:30","Blocks TeslaCrypt from payment site servers by IP address.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TeslaCrypt Ransomware Payment Sites IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/TC_PS_IPBL.txt",NULL,NULL,NULL,NULL
126,"2017-10-28 15:01:30","Blocks TeslaCrypt from payment site servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TeslaCrypt Ransomware Payment Sites Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/TC_PS_DOMBL.txt",NULL,NULL,NULL,NULL
127,"2017-10-28 15:01:30","Blocks TeslaCrypt from distribution site servers by URL.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TeslaCrypt Ransomware Distribution Site URL Blocklist","https://ransomwaretracker.abuse.ch/downloads/TC_DS_URLBL.txt",NULL,NULL,NULL,NULL
128,"2017-10-28 15:01:30","Blocks TeslaCrypt from botnet command and control servers by URL.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TeslaCrypt Ransomware C2 URL Blocklist","https://ransomwaretracker.abuse.ch/downloads/TC_C2_URLBL.txt",NULL,NULL,NULL,NULL
129,"2017-10-28 15:01:30","Blocks TeslaCrypt from botnet command and control servers by domain.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker TeslaCrypt Ransomware C2 Domain Blocklist","https://ransomwaretracker.abuse.ch/downloads/TC_C2_DOMBL.txt",NULL,NULL,NULL,NULL
130,"2017-10-28 15:01:30","Blocks Locky from payment site servers by IP address.",NULL,NULL,"rt-intel@abuse.ch",NULL,"https://ransomwaretracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","Ransomware Tracker Locky Ransomware Payment Sites IP Blocklist","https://ransomwaretracker.abuse.ch/downloads/LY_PS_IPBL.txt",NULL,NULL,NULL,NULL
131,"2017-10-28 15:01:30","Russian supplement for EasyList.","https://adblockplus.org/subscriptions",NULL,NULL,"https://forums.lanik.us/viewforum.php?f=102","https://code.google.com/archive/p/ruadlist/",NULL,NULL,"2017-10-28 15:01:30","RU AdList","https://easylist-downloads.adblockplus.org/advblock.txt",NULL,NULL,NULL,NULL
132,"2017-10-28 15:01:30","Blocks Russian regional advertisements and trackers.",NULL,NULL,"denis-ovs@yandex.ru","https://forum.mozilla-russia.org/viewtopic.php?id=3679","http://denis-ovs.narod.ru/",NULL,NULL,"2017-10-28 15:01:30","RU AdList [Old]","http://denis-ovs.narod.ru/adblock.txt",NULL,NULL,NULL,NULL
133,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#RUAdList\">RU AdList</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","RU AdList + EasyList","https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt",NULL,NULL,NULL,NULL
134,"2017-10-28 15:01:30","Russian-only fork of Fanboy's Annoyance List.",NULL,NULL,NULL,"https://forums.lanik.us/viewforum.php?f=102","https://code.google.com/archive/p/ruadlist/",NULL,NULL,"2017-10-28 15:01:30","RU AdList: BitBlock","https://easylist-downloads.adblockplus.org/bitblock.txt",NULL,NULL,NULL,NULL
135,"2017-10-28 15:01:30","Blocks advertisements and trackers.",NULL,NULL,"wduk10@hotmail.com",NULL,"http://hostsfile.mine.nu/",NULL,NULL,"2017-10-28 15:01:30","The Hosts File Project Adblock Filters","http://hostsfile.mine.nu/downloads/adblock.txt",NULL,NULL,NULL,NULL
136,"2017-10-28 15:01:30","SVN: Slovenian List is regional list primarily for uBlock Origin or uBlock, which consists mostly of static cosmetic filters and a few tracking filters. Among others, there are 100 most popular Slovenian websites included in this list.","https://github.com/betterwebleon/slovenian-list",NULL,"betterweb.leon@outlook.com",NULL,"https://github.com/betterwebleon/slovenian-list","https://github.com/betterwebleon/slovenian-list/issues",NULL,"2017-10-28 15:01:30","SVN: Slovenian List","https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt",NULL,NULL,NULL,NULL
137,"2017-10-28 15:01:30","Hosts contributed by Steven Black.","https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts",NULL,"steveb@stevenblack.com",NULL,"https://github.com/StevenBlack/hosts","https://github.com/StevenBlack/hosts/issues",NULL,"2017-10-28 15:01:30","Steven Black's Hosts","https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts",NULL,NULL,NULL,NULL
138,"2017-10-28 15:01:30","Spotify ads sources sites based on <a href=\"https://github.com/Xeroday/Spotify-Ad-Blocker\">EZBlocker</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:30","SpotifyAds","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/SpotifyAds/hosts",NULL,NULL,NULL,NULL
139,"2017-10-28 15:01:30","The Spam404 domain blacklist is a regularly updated list of abusive domain names.","http://www.spam404.com/domain-blacklist.html",NULL,"admin@spam404.com",NULL,"http://www.spam404.com/domain-blacklist.html","https://github.com/Dawsey21/Lists/issues",NULL,"2017-10-28 15:01:30","Spam404 Domain Blacklist","https://raw.githubusercontent.com/Dawsey21/Lists/master/main-blacklist.txt",NULL,NULL,NULL,NULL
140,"2017-10-28 15:01:30","This filter protects you from online scams. This filter is regularly updated with data collected by Spam404.com.","https://raw.githubusercontent.com/Dawsey21/Lists/master/adblock-list.txt",NULL,"admin@spam404.com",NULL,"http://www.spam404.com/blog/block-online-scams-with-spam404-and-adblock","https://github.com/Dawsey21/Lists/issues",NULL,"2017-10-28 15:01:30","Spam404","https://raw.githubusercontent.com/Dawsey21/Lists/master/adblock-list.txt",NULL,NULL,NULL,NULL
141,"2017-10-28 15:01:30","Whitelists the trackers on the United Airlines shopping portal so that rewards can be credited.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Shopping Whitelist United Airlines","https://shopping.mileageplus.com/adBlockWhitelist.php",NULL,NULL,NULL,NULL
142,"2017-10-28 15:01:30","Block ads with AdBlock filter.","https://web.archive.org/web/20160221135711/http://adblock.gjtech.net/?format=unix-hosts",NULL,NULL,NULL,"https://www.gjtech.net/",NULL,NULL,"2017-10-28 15:01:30","G&J AdBlock","https://web.archive.org/web/20160221135808/http://adblock.gjtech.net/?format=adblock-plus",NULL,NULL,NULL,NULL
143,"2017-10-28 15:01:30","Whitelists the trackers on the Southwest Airlines shopping portal so that rewards can be credited.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Shopping Whitelist Southwest Airlines","https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php",NULL,NULL,NULL,NULL
144,"2017-10-28 15:01:30","Whitelists the trackers on the American Airlines shopping portal so that rewards can be credited.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Shopping Whitelist American Airlines","https://www.aadvantageeshopping.com/adBlockWhitelist.php",NULL,NULL,NULL,NULL
145,"2017-10-28 15:01:30","Whitelists the trackers on the Alaska Airlines shopping portal so that rewards can be credited.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Shopping Whitelist Alaska Airlines","https://www.mileageplanshopping.com/adBlockWhitelist.php",NULL,NULL,NULL,NULL
146,"2017-10-28 15:01:30","Adblock Plus for Japan domestic and Japanese correspondence Universal Filter.","http://www.schuzak.jp/other/abp.html",NULL,NULL,NULL,"http://www.schuzak.jp/other/abp.html",NULL,NULL,"2017-10-28 15:01:30","Schuzak's Universal Filter","http://www.schuzak.jp/other/abp.conf",NULL,NULL,NULL,NULL
147,"2017-10-28 15:01:30","My list removes advertisements from all the leading Danish Websites: Ekstra Bladet, Jyllands Posten, Berlingske, TV / 2, Computerworld, Version2, etc.","https://henrik.schack.dk/adblock/","https://www.paypal.me/schack","henrik@schackinger.com",NULL,"https://henrik.schack.dk/adblock/",NULL,NULL,"2017-10-28 15:01:30","Schack's Adblock Plus List","https://adblock.dk/block.csv",NULL,NULL,NULL,NULL
148,"2017-10-28 15:01:30","I make supplemental filters in Adblock Plus to block garbage on webpages not blocked by other lists. I use many regular expressions, a few domain filters, but no CSS filters.","https://satterly.neocities.org/abp_filters.html",NULL,NULL,NULL,"https://satterly.neocities.org/abp_filters.html",NULL,NULL,"2017-10-28 15:01:30","Satterly's Adblock Plus Filters","https://satterly.neocities.org/abp_filters.txt",NULL,NULL,NULL,NULL
149,"2017-10-28 15:01:30","Blocks spammers.",NULL,NULL,"wstearns@pobox.com",NULL,"http://www.sa-blacklist.stearns.org/sa-blacklist/",NULL,NULL,"2017-10-28 15:01:30","SA-Blacklist","http://www.sa-blacklist.stearns.org/sa-blacklist/sa-blacklist.current.domains",NULL,NULL,NULL,NULL
150,"2017-10-28 15:01:30","Blocks most popular internet statistics counters on sites serving Russia.",NULL,NULL,NULL,"https://forums.lanik.us/viewforum.php?f=102","https://code.google.com/archive/p/ruadlist/",NULL,NULL,"2017-10-28 15:01:30","RU AdList: Counters","https://easylist-downloads.adblockplus.org/cntblock.txt",NULL,NULL,NULL,NULL
151,"2017-10-28 15:01:30","Whitelists the trackers on the BarclayCard shopping portal so that rewards can be credited.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Shopping Whitelist BarclayCard","https://www.barclaycardrewardsboost.com/adBlockWhitelist.php",NULL,NULL,NULL,NULL
152,"2017-10-28 15:01:30","Removes unnecessary elements from specific file sharing sites.","https://firime.wordpress.com/projects/others/fedlist/",NULL,NULL,NULL,"https://firime.wordpress.com/projects/others/fedlist/",NULL,NULL,"2017-10-28 15:01:30","Firime (FED) EasyDownload List","http://pastebin.com/raw/r9a5WrZa",NULL,NULL,NULL,NULL
153,"2017-10-28 15:01:30","Finnish blocklist for AdBlock to block social media stuff.","http://adb.juvander.net/Finland_adb_antisocial.txt",NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","Finnish AntiSocial","http://adb.juvander.net/Finland_adb_antisocial.txt",NULL,NULL,NULL,NULL
154,"2017-10-28 15:01:30","Use this file to prevent your computer from connecting to selected internet hosts. This is an easy and effective way to protect you from many types of spyware, reduces bandwidth use, blocks certain pop-up traps, prevents user tracking by way of \"web bugs\" embedded in spam, provides partial protection to IE from certain web-based exploits and blocks most advertising you would otherwise be subjected to on the internet.","https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/hosts",NULL,NULL,NULL,"https://nauscopio.wordpress.com/2011/09/05/archivo-hosts-nauscopico-para-combatir-publicidad-paginas-peligrosas-contadores-de-visitas-spam-en-combinacion-con-los-filtros-nauscopicos/","https://github.com/mozillahispano/nauscopio-filtros/issues",NULL,"2017-10-28 15:01:30","Filtros Nauscopicos Hosts","https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/hosts",NULL,NULL,NULL,NULL
155,"2017-10-28 15:01:30","Filter that unblocks ads that may be useful to users. Advertising that falls under this filter shall comply with a set of rules.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Useful Ads Filter","https://adguard.com/en/filter-rules.html?id=10",NULL,NULL,NULL,NULL
156,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites with Turkish content.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Turkish Filter","https://adguard.com/en/filter-rules.html?id=13",NULL,NULL,NULL,NULL
157,"2017-10-28 15:01:30","The most comprehensive list of various online counters and web analytics tools. If you do not want your actions on the Internet be tracked, use this filter.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Spyware Filter","https://adguard.com/en/filter-rules.html?id=3",NULL,NULL,NULL,NULL
158,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites in Spanish.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Spanish/Portuguese Filter","https://adguard.com/en/filter-rules.html?id=9",NULL,NULL,NULL,NULL
159,"2017-10-28 15:01:30","If you do not like numerous «Like» and «Tweet» buttons on all the popular websites on the Internet, subscribe to this filter, and you will not see them anymore.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Social Media Filter","https://adguard.com/en/filter-rules.html?id=4",NULL,NULL,NULL,NULL
160,"2017-10-28 15:01:30","Filter that blocks ads on iOS mobile devices in Safari browser. Contains all known mobile ad networks.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Safari Filter","https://adguard.com/en/filter-rules.html?id=12",NULL,NULL,NULL,NULL
161,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites in Russian.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Russian Filter","https://adguard.com/en/filter-rules.html?id=1",NULL,NULL,NULL,NULL
162,"2017-10-28 15:01:30","Filter that blocks ads on mobile devices. Contains all known mobile ad networks.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Mobile Ads Filter","https://adguard.com/en/filter-rules.html?id=11",NULL,NULL,NULL,NULL
163,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites in Japanese.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Japanese Filter","https://adguard.com/en/filter-rules.html?id=7",NULL,NULL,NULL,NULL
164,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites with German content.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard German Filter","https://adguard.com/en/filter-rules.html?id=6",NULL,NULL,NULL,NULL
165,"2017-10-28 15:01:30","Filter designed to test certain hazardous filtering rules before they are added to the basic filters.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Experimental Filter","https://adguard.com/en/filter-rules.html?id=5",NULL,NULL,NULL,NULL
166,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites with English content.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard English Filter","https://adguard.com/en/filter-rules.html?id=2",NULL,NULL,NULL,NULL
167,"2017-10-28 15:01:30","Filter that enables removing of the ads from websites with Dutch content.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Dutch Filter","https://adguard.com/en/filter-rules.html?id=8",NULL,NULL,NULL,NULL
168,"2017-10-28 15:01:30","It is an alternative, free way to block ads, trackers and phishing websites, and also a parental control instrument.",NULL,NULL,NULL,NULL,"https://adguard.com/en/adguard-dns/overview.html",NULL,NULL,"2017-10-28 15:01:30","Adguard DNS Filter","https://adguard.com/en/filter-rules.html?id=15",NULL,NULL,NULL,NULL
169,"2017-10-28 15:01:30","Blocks irritating elements on webpages, including cookie notices, third-party widgets and in-page popups (Doesnt include social media widgets and buttons, to block them you can still use Social media filter separately). It was inspired by Fanboy Annoyances List, but doesnt duplicate it, so you can use them both together.","https://adguard.com/en/filters.html",NULL,NULL,"https://forum.adguard.com/index.php?categories/filter-rules.66/","https://adguard.com/en/filters.html","https://github.com/AdguardTeam/AdguardFilters/issues",NULL,"2017-10-28 15:01:30","Adguard Annoyances Filter","https://adguard.com/en/filter-rules.html?id=14",NULL,NULL,NULL,NULL
170,"2017-10-28 15:01:30","Blocks ads injected by adware.","https://adblockplus.org/subscriptions",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:30","Adware Filters","https://easylist-downloads.adblockplus.org/adwarefilters.txt",NULL,NULL,NULL,NULL
171,"2017-10-28 15:01:30","This is a general, mainly a Finnish list for blocking various elements on specific websites such as ads, cookie notifications and cosmetic annoyances.","https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt",NULL,NULL,NULL,"https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt",NULL,NULL,"2017-10-28 15:01:30","Additional Adblock Rules","https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt",NULL,NULL,NULL,NULL
172,"2017-10-28 15:01:30","Its purpose is to prevent access to websites that broadcast the ad and block access to websites intrusive on your PC and your smartphone.","https://sourceforge.net/projects/adzhosts/",NULL,"adzhosts@gmail.com","https://sourceforge.net/p/adzhosts/discussion/general/","https://sourceforge.net/projects/adzhosts/",NULL,NULL,"2017-10-28 15:01:30","AdZHosts","https://sourceforge.net/projects/adzhosts/files/HOSTS.txt/download",NULL,NULL,NULL,NULL
173,"2017-10-28 15:01:30","A hosts list blocking miscellaneous annoyances. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Anti-Miscellaneous Hosts","http://rlwpx.free.fr/WPFF/hmis.7z",NULL,NULL,NULL,NULL
174,"2017-10-28 15:01:30","Blockzilla is an unbloated and slim list, being light on system resources, yet still powerful against ads and trackers.","https://github.com/zpacman/Blockzilla",NULL,NULL,NULL,"https://blockzilla.jimdo.com/","https://github.com/zpacman/Blockzilla/issues",NULL,"2017-10-28 15:01:30","Blockzilla","https://raw.githubusercontent.com/zpacman/Blockzilla/master/Blockzilla.txt",NULL,NULL,NULL,NULL
175,"2017-10-28 15:01:30","Adblock / Adblock plus filter list for blocking cookie notifications.","https://github.com/r4vi/block-the-eu-cookie-shit-list",NULL,NULL,NULL,"https://github.com/r4vi/block-the-eu-cookie-shit-list","https://github.com/r4vi/block-the-eu-cookie-shit-list/issues",NULL,"2017-10-28 15:01:30","Block the EU Cookie Shit List","https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt",NULL,NULL,NULL,NULL
176,"2017-10-28 15:01:30","Adblock filters for both Adblock PLUS and uBlock. It also includes some anti-adblocking rules to make your adblocking extension undetectable. The author manually add the track block rules from https://better.fyi/trackers/ since those rules are only for an iOS app only.",NULL,NULL,NULL,NULL,"https://github.com/anarki999/Adblock-List-Archive","https://github.com/anarki999/Adblock-List-Archive/issues",NULL,"2017-10-28 15:01:30","Better.fyi | Trackers (List)","https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt",NULL,NULL,NULL,NULL
177,"2017-10-28 15:01:30","Blocks requests to sites which have used legal threats to remove themselves from other blacklists.","https://raw.githubusercontent.com/paulgb/BarbBlock/master/BarbBlock.txt",NULL,NULL,NULL,"https://github.com/paulgb/BarbBlock","https://github.com/paulgb/BarbBlock/issues",NULL,"2017-10-28 15:01:30","BarbBlock","https://raw.githubusercontent.com/paulgb/BarbBlock/master/BarbBlock.txt",NULL,NULL,NULL,NULL
178,"2017-10-28 15:01:30","This is a list for blocking advertisements on banki.ru site which is not blocked by \"conventional\" list.","https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt",NULL,NULL,NULL,"https://github.com/rebelion76/bankiru_plus_adblock_list","https://github.com/rebelion76/bankiru_plus_adblock_list/issues",NULL,"2017-10-28 15:01:30","Banki.ru Plus Adblock List","https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt",NULL,NULL,NULL,NULL
179,"2017-10-28 15:01:30","A non-comprehensive malware hosts list meant to be used in conjunction with the <a href=\"http://www.hostsfile.org/pac.html\">King of the PAC</a> file.",NULL,NULL,NULL,NULL,"http://www.hostsfile.org/hosts.html",NULL,NULL,"2017-10-28 15:01:30","BadHosts","http://www.hostsfile.org/Downloads/hosts.txt",NULL,NULL,NULL,NULL
180,"2017-10-28 15:01:30","The sites listed there a fake/malicious sites that lure people with fake direct-download-links to JAV videos.",NULL,NULL,NULL,"https://www.akiba-online.com/threads/fake-jav-ddl-sites-list.1560416/","https://www.akiba-online.com/threads/fake-jav-ddl-sites-list.1560416/",NULL,NULL,"2017-10-28 15:01:30","Bad JAV Sites","https://pastebin.com/raw/kDqbYwWr",NULL,NULL,NULL,NULL
181,"2017-10-28 15:01:30","A list for Adblock Plus, which is one of the most famous ad blocking softwares.","https://osdn.net/projects/ayucat-list/",NULL,NULL,NULL,"https://osdn.net/projects/ayucat-list/",NULL,NULL,"2017-10-28 15:01:30","Ayucat Powerful List","http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9",NULL,NULL,NULL,NULL
182,"2017-10-28 15:01:30","Complementary subscription to Liste FR + EasyList.","https://web.archive.org/web/20160221135532/http://www.antipubfirefox.org/antipub/antipubfirefox-adblocklist-current-expanded.txt",NULL,NULL,NULL,"https://www.antipubweb.org/",NULL,NULL,"2017-10-28 15:01:30","AntiPubWeb","https://web.archive.org/web/20160221135532/http://www.antipubfirefox.org/antipub/antipubfirefox-adblocklist-current-expanded.txt",NULL,NULL,NULL,NULL
183,"2017-10-28 15:01:30","Blocks shady, annoying pop-under ads from the infamous PopAds ad network.",NULL,NULL,NULL,NULL,"https://github.com/Yhonay/antipopads","https://github.com/Yhonay/antipopads/issues",NULL,"2017-10-28 15:01:30","Anti-PopAds","https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt",NULL,NULL,NULL,NULL
184,"2017-10-28 15:01:30","Blocks Facebook trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW",NULL,NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:30","Anti-Facebook List","https://fanboy.co.nz/fanboy-antifacebook.txt",NULL,NULL,NULL,NULL
185,"2017-10-28 15:01:30","A hosts list blocking phishing sites. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Phishing Hosts","http://rlwpx.free.fr/WPFF/hblc.7z",NULL,NULL,NULL,NULL
186,"2017-10-28 15:01:30","A hosts list blocking malware sites. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Malware Hosts","http://rlwpx.free.fr/WPFF/hrsk.7z",NULL,NULL,NULL,NULL
187,"2017-10-28 15:01:30","A hosts list blocking tracking sites. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Anti-Trackers Hosts","http://rlwpx.free.fr/WPFF/htrc.7z",NULL,NULL,NULL,NULL
188,"2017-10-28 15:01:30","A hosts list blocking adult/pornographic sites. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Anti-Sex Hosts","http://rlwpx.free.fr/WPFF/hsex.7z",NULL,NULL,NULL,NULL
189,"2017-10-28 15:01:30","A hosts list blocking advertising sites. (Compressed, currently cannot be subscribed to/added.)",NULL,"http://rlwpx.free.fr/WPFF/don.htm","contact.wiki.airelle@spamgourmet.com","http://rlwpx.free.fr/Webforum/","http://rlwpx.free.fr/WPFF/hosts.htm",NULL,NULL,"2017-10-28 15:01:30","Airelle's Anti-Advertisements Hosts","http://rlwpx.free.fr/WPFF/hpub.7z",NULL,NULL,NULL,NULL
190,"2017-10-28 15:01:30","Spam sites based on <a href=\"https://filterlists.com/#BadHosts\">BadHosts</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:30","add.Spam","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts",NULL,NULL,NULL,NULL
191,"2017-10-28 15:01:30","Risk content sites based on <a href=\"https://filterlists.com/#BadHosts\">BadHosts</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:30","add.Risk","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts",NULL,NULL,NULL,NULL
192,"2017-10-28 15:01:30","Dead sites based on <a href=\"https://filterlists.com/#BadHosts\">BadHosts</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:30","add.Dead","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts",NULL,NULL,NULL,NULL
193,"2017-10-28 15:01:30","This blocklist only contains compromised / hijacked websites (level 2) which are being abused by cybercriminals to host a ZeuS botnet controller.","https://zeustracker.abuse.ch/blocklist.php","https://zeustracker.abuse.ch/faq.php","contactme@abuse.ch",NULL,"https://zeustracker.abuse.ch/blocklist.php",NULL,NULL,"2017-10-28 15:01:30","abuse.ch ZeuS Compromised URL Blocklist","https://zeustracker.abuse.ch/blocklist.php?download=compromised",NULL,NULL,NULL,NULL
194,"2017-10-28 15:01:30","The Feodo Tracker Feodo IP Blocklist contains IP addresses (IPv4) used as C&C communication channel by the Feodo Trojan. This lists contains two types of IP address: Feodo C&C servers used by version A, version C and version D of the Feodo Trojan (these IP addresses are usually compromised servers running an nginx daemon on port 8080 TCP or 7779 TCP that is acting as proxy, forwarding all traffic to a tier 2 proxy node) and Feodo C&C servers used by version B which are usually used for the exclusive purpose of hosting a Feodo C&C server. Attention: Since Feodo C&C servers associated with version A, version C and version D are usually hosted on compromised servers, its likely that you also block/drop legit traffic e.g. towards websites hosted on a certain IP address acting as Feodo C&C for version A, version C and version D. If you only want to block/drop traffic to Feodo C&C servers hosted on bad IPs (version B), please use the blocklist BadIPs documented below.","https://feodotracker.abuse.ch/blocklist/",NULL,"contactme@abuse.ch",NULL,"https://feodotracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","abuse.ch Feodo IP Blocklist","https://feodotracker.abuse.ch/blocklist/?download=ipblocklist",NULL,NULL,NULL,NULL
195,"2017-10-28 15:01:30","The Feodo Tracker Feodo Domain Blocklist contains domain names (FQDN) used as C&C communication channel by the Feodo Trojan. These domains names are usually registered and operated by cybercriminals for the exclusive purpose of hosting a Feodo botnet controller. Hence you should expect no legit traffic to those domains. I highly recommend you to block/drop any traffic towards any Feodo C&C domain by using the Feodo Domain Blocklist. Please consider that domain names are usually only used by version B of the Feodo Trojan. C&C communication channels used by version A, version C and version D are not covered by this blocklist.","https://feodotracker.abuse.ch/blocklist/",NULL,"contactme@abuse.ch",NULL,"https://feodotracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","abuse.ch Feodo Domain Blocklist","https://feodotracker.abuse.ch/blocklist/?download=domainblocklist",NULL,NULL,NULL,NULL
196,"2017-10-28 15:01:30","The Feodo Tracker Feodo BadIP Blocklist only contains IP addresses (IPv4) used as C&C communication channel by the Feodo Trojan version B. These IP addresses are usually servers rented by cybercriminals directly and used for the exclusive purpose of hosting a Feodo C&C server. Hence you should expect no legit traffic to those IP addresses. I highly recommend you to block/drop any traffic towards any Feodo C&C using the Feodo BadIP Blocklist. Please consider that this blocklist only contains IP addresses used by version B of the Feodo Trojan. C&C communication channels used by version A, version C and version D are not covered by this blocklist.","https://feodotracker.abuse.ch/blocklist/",NULL,"contactme@abuse.ch",NULL,"https://feodotracker.abuse.ch/blocklist/",NULL,NULL,"2017-10-28 15:01:30","abuse.ch Feodo BadIP Blocklist","https://feodotracker.abuse.ch/blocklist/?download=badips",NULL,NULL,NULL,NULL
197,"2017-10-28 15:01:30","A list combining <a href=\"https://filterlists.com/#ABPindo\">ABPindo</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:30","ABPindo + EasyList","https://easylist-downloads.adblockplus.org/abpindo+easylist.txt",NULL,NULL,NULL,NULL
198,"2017-10-28 15:01:30","ABPindo is an affiliated filter list written by hermawan that specifically removes adverts on Indonesian language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,NULL,"https://forums.lanik.us/viewforum.php?f=94","http://abpindo.blogspot.com/","https://github.com/ABPindo/indonesianadblockrules/issues",NULL,"2017-10-28 15:01:30","ABPindo","https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt",NULL,NULL,NULL,NULL
199,"2017-10-28 15:01:30","Born from the need to block advertisements on the increasingly popular social network, this module is a great way to complete the protection offered by Adblock Plus and X Files during daily navigation. It may be associated with the main module of the X-Files or third-party lists.","https://github.com/gioxx/xfiles","https://paypal.me/gioxx/5",NULL,"https://abpxfiles.uservoice.com/","http://noads.it/","https://github.com/gioxx/xfiles/issues",NULL,"2017-10-28 15:01:30","X Files: NoFacebookAds","https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt",NULL,NULL,NULL,NULL
200,"2017-10-28 15:01:30","The module that serves to protect the user's navigation, seamlessly integrates to subscriptions already installed on your Adblock Plus.","https://github.com/gioxx/xfiles","https://paypal.me/gioxx/5",NULL,"https://abpxfiles.uservoice.com/","http://noads.it/","https://github.com/gioxx/xfiles/issues",NULL,"2017-10-28 15:01:30","X Files: HWS Harmful WebSites","https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt",NULL,NULL,NULL,NULL
201,"2017-10-28 15:01:30","Specific for Italian websites but with an eye also to the most visited international, is the main form and the list officially recognized (for Italy), perfectly compatible with AdBlock Plus.","https://github.com/gioxx/xfiles","https://paypal.me/gioxx/5",NULL,"https://abpxfiles.uservoice.com/","http://noads.it/","https://github.com/gioxx/xfiles/issues",NULL,"2017-10-28 15:01:30","ABP X Files","http://noads.it/filtri.txt",NULL,NULL,NULL,NULL
202,"2017-10-28 15:01:30","Blocks Japanese regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://github.com/k2jp/abp-japanese-filters","https://github.com/k2jp/abp-japanese-filters/issues",NULL,"2017-10-28 15:01:30","ABP Japanese Paranoid Filters","https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt",NULL,NULL,NULL,NULL
203,"2017-10-28 15:01:30","Blocks Japanese regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://github.com/k2jp/abp-japanese-filters","https://github.com/k2jp/abp-japanese-filters/issues",NULL,"2017-10-28 15:01:30","ABP Japanese Filters","https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt",NULL,NULL,NULL,NULL
204,"2017-10-28 15:01:30","Blocks irritating elements on Japanese regional webpages.",NULL,NULL,NULL,NULL,"https://github.com/k2jp/abp-japanese-filters","https://github.com/k2jp/abp-japanese-filters/issues",NULL,"2017-10-28 15:01:30","ABP Japanese Element-hiding Filters","https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt",NULL,NULL,NULL,NULL
205,"2017-10-28 15:01:30","Blocks Japanese regional social network advertisements and trackers.",NULL,NULL,NULL,NULL,"https://github.com/k2jp/abp-japanese-filters","https://github.com/k2jp/abp-japanese-filters/issues",NULL,"2017-10-28 15:01:30","ABP Japanese 3rd Party SNS Filters","https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt",NULL,NULL,NULL,NULL
206,"2017-10-28 15:01:30","The ABP advertising filter is built with the mission of improving the browsing experience for the vietnamese users. ABPVN may not help block all ads, but ABPVN will minimize the appearance of ads on most websites in Vietnam.","https://abpvn.com","https://abpvn.com/napthe","support@abpvn.com","http://www.vn-zoom.com/f77/abp-bo-loc-quang-cao-cho-nguoi-viet-2856275.html","https://abpvn.com",NULL,NULL,"2017-10-28 15:01:30","ABPVN List","https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt",NULL,NULL,NULL,NULL
207,"2017-10-28 15:01:30","Helps you keep your Ad-Blocker active, when you visit a website and it asks you to disable. Composed of a user script «AakScript» written in javascript and a filter list «AakList» using the same syntax as lists AdBlock and AdBlock Plus, the two are complementary and unlock different website.","https://github.com/reek/anti-adblock-killer/","https://github.com/reek/anti-adblock-killer/#donate",NULL,NULL,"https://github.com/reek/anti-adblock-killer/","https://github.com/reek/anti-adblock-killer/issues",NULL,"2017-10-28 15:01:30","AakList (Anti-Adblock Killer)","https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt",NULL,NULL,NULL,NULL
208,"2017-10-28 15:01:30","This blocklist contains all domain names associated with ZeuS C&Cs which are currently being tracked by ZeuS Tracker.","https://zeustracker.abuse.ch/blocklist.php","https://zeustracker.abuse.ch/faq.php","contactme@abuse.ch",NULL,"https://zeustracker.abuse.ch/blocklist.php",NULL,NULL,"2017-10-28 15:01:30","abuse.ch ZeuS Domain Blocklist","https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist",NULL,NULL,NULL,NULL
209,"2017-10-28 15:01:30","The ZeuS domain blocklist (BadDomains) is the recommended blocklist if you want to block only ZeuS domain names. It excludes domain names that ZeuS Tracker believes to be hijacked (level 2).","https://zeustracker.abuse.ch/blocklist.php","https://zeustracker.abuse.ch/faq.php","contactme@abuse.ch",NULL,"https://zeustracker.abuse.ch/blocklist.php",NULL,NULL,"2017-10-28 15:01:30","abuse.ch ZeuS Domain Blocklist \"BadDomains\"","https://zeustracker.abuse.ch/blocklist.php?download=baddomains",NULL,NULL,NULL,NULL
210,"2017-10-28 15:01:31","This blocklist contains all IPv4 addresses associated with ZeuS C&Cswhich are currently being tracked by ZeuS Tracker.","https://zeustracker.abuse.ch/blocklist.php","https://zeustracker.abuse.ch/faq.php","contactme@abuse.ch",NULL,"https://zeustracker.abuse.ch/blocklist.php",NULL,NULL,"2017-10-28 15:01:31","abuse.ch ZeuS IP Blocklist","https://zeustracker.abuse.ch/blocklist.php?download=ipblocklist",NULL,NULL,NULL,NULL
211,"2017-10-28 15:01:31","This blocklists only includes IPv4 addresses that are used by the ZeuS trojan. It is the recommened blocklist if you want to block only ZeuS IPs. It excludes IP addresses that ZeuS Tracker believes to be hijacked (level 2) or belong to a free web hosting provider (level 3).","https://zeustracker.abuse.ch/blocklist.php","https://zeustracker.abuse.ch/faq.php","contactme@abuse.ch",NULL,"https://zeustracker.abuse.ch/blocklist.php",NULL,NULL,"2017-10-28 15:01:31","abuse.ch ZeuS IP Blocklist \"BadIPs\"","https://zeustracker.abuse.ch/blocklist.php?download=badips",NULL,NULL,NULL,NULL
212,"2017-10-28 15:01:31","2o7Net tracking sites based on <a href=\"https://filterlists.com/#BadHosts\">BadHosts</a> content.","https://github.com/StevenBlack/hosts",NULL,NULL,NULL,"https://github.com/FadeMind/hosts.extras","https://github.com/FadeMind/hosts.extras/issues",NULL,"2017-10-28 15:01:31","add.2o7Net","https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts",NULL,NULL,NULL,NULL
213,"2017-10-28 15:01:31","Blocks ads on YouTube.",NULL,NULL,NULL,NULL,"https://github.com/kbinani/adblock-youtube-ads",NULL,NULL,"2017-10-28 15:01:31","Adblock YouTube Ads","https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt",NULL,NULL,NULL,NULL
214,"2017-10-28 15:01:31","The Adblock Warning Removal List specifically removes obtrusive messages and warnings targeted to users who use an adblocker.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylist.subscription+anti@gmail.com","https://forums.lanik.us/","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:31","Adblock Warning Removal List","https://easylist-downloads.adblockplus.org/antiadblockfilters.txt",NULL,NULL,NULL,NULL
215,"2017-10-28 15:01:31","Adblock PL is official Poland filter list for AdBlock and Adblock Plus.","https://github.com/adblockpolska/Adblock_PL_List",NULL,"adblockpolska@gmail.com",NULL,"https://www.facebook.com/adblockpl","https://github.com/adblockpolska/Adblock_PL_List/issues",NULL,"2017-10-28 15:01:31","Adblock Polska","https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt",NULL,NULL,NULL,NULL
216,"2017-10-28 15:01:31","Blocks Polish regional social network advertisements and trackers.",NULL,NULL,"errors@certyficate.it",NULL,"http://www.certyficate.it/","https://github.com/MajkiIT/polish-ads-filter/issues",NULL,"2017-10-28 15:01:31","Adblock Polish Social Rules","https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt",NULL,NULL,NULL,NULL
217,"2017-10-28 15:01:31","Blocks Persian regional advertisements and trackers.",NULL,NULL,NULL,"https://adblockplus.org/forum/viewtopic.php?f=2&t=7658","https://ideone.com/K452p",NULL,NULL,"2017-10-28 15:01:31","Adblock Persian List","https://ideone.com/plain/K452p",NULL,NULL,NULL,NULL
218,"2017-10-28 15:01:31","Blocks Finnish regional advertisements and trackers.",NULL,NULL,NULL,"https://www.juvander.fi/site/ilpo/Forums/tabid/139/forumid/23/scope/threads/Default.aspx","https://www.juvander.fi/site/ilpo/Home/tabid/127/EntryId/825/New-Adblock-filter-list.aspx",NULL,NULL,"2017-10-28 15:01:31","Adblock List for Finland","http://adb.juvander.net/Finland_adb.txt",NULL,NULL,NULL,NULL
219,"2017-10-28 15:01:31","Prevention behavior tracking by the site administrator.","http://blogram.net/2010/04/23/adblock/",NULL,NULL,NULL,"http://blogram.net/2010/04/23/adblock/",NULL,NULL,"2017-10-28 15:01:31","BLOGRAM Analysis Block Filter List for Japan","http://blogram.net/wp-content/uploads/easylist3.txt",NULL,NULL,NULL,NULL
220,"2017-10-28 15:01:31","Blocks Korean regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://code.google.com/archive/p/adblock-korea/",NULL,NULL,"2017-10-28 15:01:31","Adblock Korea","https://web.archive.org/web/20130615155938/http://adblock-korea.googlecode.com/git/adblock-korea.txt",NULL,NULL,NULL,NULL
221,"2017-10-28 15:01:31","Blocks Estonian regional advertisements and trackers.",NULL,NULL,"adblock@gurud.ee",NULL,"http://gurud.ee/veeb/adblock",NULL,NULL,"2017-10-28 15:01:31","Adblock Filters by Gurud.ee","http://gurud.ee/ab.txt",NULL,NULL,NULL,NULL
222,"2017-10-28 15:01:31","A set of adblock filters to block advertisement in Persian websites.","https://github.com/SlashArash/adblockfa/",NULL,"slasharash@protonmail.com",NULL,"https://github.com/SlashArash/adblockfa","https://github.com/SlashArash/adblockfa/issues",NULL,"2017-10-28 15:01:31","AdBlockFarsi","https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt",NULL,NULL,NULL,NULL
223,"2017-10-28 15:01:31","Presented here filter set was created for Polish internet users. Contains a list of elements of advertising, such as banners or flash animations, the most commonly used on Polish websites.","http://www.certyficate.it/polski-filtr-adblock/",NULL,"errors@certyficate.it",NULL,"http://www.certyficate.it/","https://github.com/MajkiIT/polish-ads-filter/issues",NULL,"2017-10-28 15:01:31","Adblock & uBlock Polish Filters","https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt",NULL,NULL,NULL,NULL
224,"2017-10-28 15:01:31","Filters Polish cookie messages in Adblock and uBlock.",NULL,NULL,"errors@certyficate.it",NULL,"http://www.certyficate.it/","https://github.com/MajkiIT/polish-ads-filter/issues",NULL,"2017-10-28 15:01:31","Adblock & uBlock Polish Cookies Filters","https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt",NULL,NULL,NULL,NULL
225,"2017-10-28 15:01:31","Blocks Japanese regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://logroid.blogspot.com/",NULL,NULL,"2017-10-28 15:01:31","AdAway Blocking Hosts File for Japan","https://sites.google.com/site/logroid/files/hosts.txt",NULL,NULL,NULL,NULL
226,"2017-10-28 15:01:31","Blocking mobile ad providers and some analytics providers.","https://adaway.org/hosts.txt","https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dominik%40sufficientlysecure.org&lc=US&item_name=AdAway%20Donation&no_note=0&no_shipping=1&currency_code=EUR",NULL,"http://forum.xda-developers.com/showthread.php?t=2190753","https://adaway.org/","https://github.com/AdAway/AdAway/issues",NULL,"2017-10-28 15:01:31","AdAway","https://adaway.org/hosts.txt",NULL,NULL,NULL,NULL
227,"2017-10-28 15:01:31","Allow non-intrusive advertising.","https://easylist-downloads.adblockplus.org/exceptionrules.txt",NULL,"info@eyeo.com",NULL,"https://acceptableads.com/",NULL,NULL,"2017-10-28 15:01:31","Acceptable Ads","https://easylist-downloads.adblockplus.org/exceptionrules.txt",NULL,NULL,NULL,NULL
228,"2017-10-28 15:01:31","Ad blocking rules for Iranian/Persian websites.","https://github.com/farrokhi/adblock-iran",NULL,NULL,NULL,"https://github.com/farrokhi/adblock-iran","https://github.com/farrokhi/adblock-iran/issues",NULL,"2017-10-28 15:01:31","Adblock Iran","https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt",NULL,NULL,NULL,NULL
229,"2017-10-28 15:01:31","Block only comments.","https://youtube.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://youtube.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:31","YouTube: Remove Comments","https://easylist-downloads.adblockplus.org/yt_annoyances_comments.txt",NULL,NULL,NULL,NULL
230,"2017-10-28 15:01:31","Block the DL itself of advertising.","http://blogram.net/2010/04/23/adblock/",NULL,NULL,NULL,"http://blogram.net/2010/04/23/adblock/",NULL,NULL,"2017-10-28 15:01:31","BLOGRAM Basic Filter List for Japan","http://blogram.net/wp-content/uploads/easylist2.txt",NULL,NULL,NULL,NULL
231,"2017-10-28 15:01:31","Hide text ads by CSS.","http://blogram.net/2010/04/23/adblock/",NULL,NULL,NULL,"http://blogram.net/2010/04/23/adblock/",NULL,NULL,"2017-10-28 15:01:31","BLOGRAM Element Hiding Filter List for Japan","http://blogram.net/wp-content/uploads/easylist1.txt",NULL,NULL,NULL,NULL
232,"2017-10-28 15:01:31","Targeting sites with Hoax, propanganda and clickbait (fake sites). Note: List doesn't include harmless spoof/satire sites like theonion.com.","https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW",NULL,"https://forums.lanik.us/viewtopic.php?f=88&t=34971","https://github.com/ryanbr/fanboy-adblock","https://github.com/ryanbr/fanboy-adblock/issues",NULL,"2017-10-28 15:01:31","Fake-News List","https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt",NULL,NULL,NULL,NULL
233,"2017-10-28 15:01:31","Block only sidebar annoyances.","https://facebook.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://facebook.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:31","Facebook Sidebar Blocker","https://easylist-downloads.adblockplus.org/fb_annoyances_sidebar.txt",NULL,NULL,NULL,NULL
234,"2017-10-28 15:01:31","Block Facebook objects on non-Facebook websites","http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt",NULL,"fbprivacylist@squirrelconspiracy.net",NULL,"http://www.squirrelconspiracy.net/abp/facebook-privacy-list.html",NULL,NULL,"2017-10-28 15:01:31","Facebook Privacy List","http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt",NULL,NULL,NULL,NULL
235,"2017-10-28 15:01:31","Block only news feed annoyances.","https://facebook.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://facebook.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:31","Facebook News Feed Annoyances Blocker","https://easylist-downloads.adblockplus.org/fb_annoyances_newsfeed.txt",NULL,NULL,NULL,NULL
236,"2017-10-28 15:01:31","Block all Facebook annoyances.","https://facebook.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://facebook.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:31","Facebook Annoyances Blocker","https://easylist-downloads.adblockplus.org/fb_annoyances_full.txt",NULL,NULL,NULL,NULL
237,"2017-10-28 15:01:31","Blocks Estonian regional advertisements and trackers.",NULL,NULL,NULL,NULL,"http://adblock.ee/",NULL,NULL,"2017-10-28 15:01:31","Eesti Custom Sites Filter","http://adblock.ee/list.php",NULL,NULL,NULL,NULL
238,"2017-10-28 15:01:31","Members with ad blocking software may experience issues receiving Cash Back. If you have AdBlock, Adblock Plus or uBlock, you can add or subscribe to the Ebates Cash Back Shopping filter list.","https://www.ebates.com/help/troubleshooting.htm#abp",NULL,NULL,NULL,"https://www.ebates.com/",NULL,NULL,"2017-10-28 15:01:31","Ebates Cash Back Shopping","https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt",NULL,NULL,NULL,NULL
239,"2017-10-28 15:01:31","Testing unsafe rules for EasyList that will break certain websites.","https://easylist-downloads.adblockplus.org/easytest.txt",NULL,NULL,"https://forums.lanik.us/viewtopic.php?t=8505","https://forums.lanik.us/viewtopic.php?t=8505",NULL,NULL,"2017-10-28 15:01:31","EasyTest","https://easylist-downloads.adblockplus.org/easytest.txt",NULL,NULL,NULL,NULL
240,"2017-10-28 15:01:31","This EasyPrivacy variant does not contain rules for international domains.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","EasyPrivacy Without International Filters","https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt",NULL,NULL,NULL,NULL
241,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyPrivacy\">EasyPrivacy</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyPrivacy + EasyList","https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt",NULL,NULL,NULL,NULL
242,"2017-10-28 15:01:31","EasyPrivacy is an optional supplementary filter list that completely removes all forms of tracking from the internet, including web bugs, tracking scripts and information collectors, thereby protecting your personal data.","https://easylist.to/",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","EasyPrivacy","https://easylist.to/easylist/easyprivacy.txt",NULL,NULL,NULL,NULL
243,"2017-10-28 15:01:31","This EasyList variant does not contain filters for adult domains.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/viewforum.php?f=23","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","EasyList Without Rules for Adult Sites","https://easylist-downloads.adblockplus.org/easylist_noadult.txt",NULL,NULL,NULL,NULL
244,"2017-10-28 15:01:31","This EasyList variant only contains blocking filters to remove adverts, with no element rules whatsoever; it, therefore, has more limited coverage than the full version of the list, although still commands a niche market.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/viewforum.php?f=23","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","EasyList Without Element Hiding Rules","https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt",NULL,NULL,NULL,NULL
245,"2017-10-28 15:01:31","Help you to block ads in Thailand websites.","https://github.com/easylist-thailand/easylist-thailand",NULL,NULL,NULL,"https://easylist-thailand.github.io/","https://github.com/easylist-thailand/easylist-thailand/issues",NULL,"2017-10-28 15:01:31","EasyList Thailand","https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt",NULL,NULL,NULL,NULL
246,"2017-10-28 15:01:31","Spanish supplement for EasyList.","https://adblockplus.org/subscriptions",NULL,"easylist.spanish@gmail.com","https://forums.lanik.us/viewforum.php?f=103","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:31","EasyList Spanish","https://easylist-downloads.adblockplus.org/easylistspanish.txt",NULL,NULL,NULL,NULL
247,"2017-10-28 15:01:31","In page Pop-Ups and other annoyances; thereby substantially decreasing web page loading times and uncluttering them (includes <a href=\"https://filterlists.com/#FanboysSocialBlockingList\">Fanboy's Social Blocking List</a> and <a href=\"https://filterlists.com/#FanboysCookiemonsterList\">Fanboy's Cookiemonster List</a>.)","https://fanboy.co.nz/","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","Fanboy's Annoyance List","https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt",NULL,NULL,NULL,NULL
248,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListLithuania\">EasyList Lithuania</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Lithuania + EasyList","https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt",NULL,NULL,NULL,NULL
249,"2017-10-28 15:01:31","Blocks fonts loaded from third parties.",NULL,NULL,NULL,NULL,"http://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Anti-thirdparty Fonts","https://fanboy.co.nz/fanboy-antifonts.txt",NULL,NULL,NULL,NULL
250,"2017-10-28 15:01:31","This will remove cookie and privacy warnings.","https://fanboy.co.nz/","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","Fanboy's Cookiemonster List","https://fanboy.co.nz/fanboy-cookiemonster.txt",NULL,NULL,NULL,NULL
251,"2017-10-28 15:01:31","Blocks English and Spanish regional advertisements and trackers.",NULL,NULL,NULL,NULL,"https://nauscopio.wordpress.com/2010/07/05/filtrado-bloqueo-y-ocultacion-de-la-publicidad-en-google-chrome/","https://github.com/mozillahispano/nauscopio-filtros/issues",NULL,"2017-10-28 15:01:31","Filtros Nauscopicos","https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt",NULL,NULL,NULL,NULL
252,"2017-10-28 15:01:31","Tentative hosts file for Italian sites created from Easylist Italy and ADB X Files.","https://filtri-dns.ga/filtri.txt",NULL,NULL,NULL,"https://filtri-dns.ga/",NULL,NULL,"2017-10-28 15:01:31","Filtri DNS","https://filtri-dns.ga/filtri.txt",NULL,NULL,NULL,NULL
253,"2017-10-28 15:01:31","This filter list for uBlock Origin/Adblock Plus is designed to be used with such lists as EasyList, RU AdList etc., so it's substantially free of intersections with them. The list is made for blocking ad (mostly on Russian websites) missed by other filter lists maintainers. It is regularly updated and actively developed for now.","https://github.com/hant05080/uBlock-filters",NULL,"hant0508@gmail.com",NULL,"https://github.com/hant05080/uBlock-filters","https://github.com/hant05080/uBlock-filters/issues",NULL,"2017-10-28 15:01:31","Filters by hant0508","https://raw.githubusercontent.com/hant05080/uBlock-filters/master/filters.txt",NULL,NULL,NULL,NULL
254,"2017-10-28 15:01:31","Blocks Vietnamese regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Vietnamese","https://fanboy.co.nz/fanboy-vietnam.txt",NULL,NULL,NULL,NULL
255,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyList\">EasyList</a>, <a href=\"https://filterlists.com/#EasyPrivacy\">EasyPrivacy</a>, <a href=\"https://filterlists.com/#FanboysEnhancedTrackingList\">Fanboy's Enhanced Tracking List</a>, and <a href=\"https://filterlists.com/#FanboysAnnoyanceList\">Fanboy's Annoyance List</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","Fanboy's Ultimate List","https://fanboy.co.nz/r/fanboy-ultimate.txt",NULL,NULL,NULL,NULL
256,"2017-10-28 15:01:31","Blocks Turkish regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Turkish","https://fanboy.co.nz/fanboy-turkish.txt",NULL,NULL,NULL,NULL
257,"2017-10-28 15:01:31","Blocks Swedish regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Swedish","https://fanboy.co.nz/fanboy-swedish.txt",NULL,NULL,NULL,NULL
258,"2017-10-28 15:01:31","Blocks Spanish and Portuguese regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Spanish/Portuguese","https://fanboy.co.nz/fanboy-espanol.txt",NULL,NULL,NULL,NULL
259,"2017-10-28 15:01:31","Hide and block social content, social widgets, social scripts and social icons.","https://fanboy.co.nz/","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","easylist.subscription@gmail.com","https://forums.lanik.us/","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","Fanboy's Social Blocking List","https://easylist-downloads.adblockplus.org/fanboy-social.txt",NULL,NULL,NULL,NULL
260,"2017-10-28 15:01:31","Blocks Polish regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Polish","https://fanboy.co.nz/fanboy-polish.txt",NULL,NULL,NULL,NULL
261,"2017-10-28 15:01:31","Blocks Korean regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Korean","https://fanboy.co.nz/fanboy-korean.txt",NULL,NULL,NULL,NULL
262,"2017-10-28 15:01:31","Blocks Japanese regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Japanese","https://fanboy.co.nz/fanboy-japanese.txt",NULL,NULL,NULL,NULL
263,"2017-10-28 15:01:31","Blocks Hebrew regional advertisements and trackers.",NULL,NULL,"fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's IsraelList","https://fanboy.co.nz/israelilist/IsraelList.txt",NULL,NULL,NULL,NULL
264,"2017-10-28 15:01:31","Blocks Indian regional advertisements and trackers.",NULL,"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW","fanboyadblock@googlegroups.com",NULL,"https://fanboy.co.nz/",NULL,NULL,"2017-10-28 15:01:31","Fanboy's Indian","https://fanboy.co.nz/fanboy-indian.txt",NULL,NULL,NULL,NULL
265,"2017-10-28 15:01:31","Blocks common tracking scripts such as Omniture, Webtrends, Foresee, Coremetrics, Google-Analytics, Touchclarity, ChannelIntelligence.","https://fanboy.co.nz/filters.html","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WMGE9MAGGGMHW",NULL,NULL,"http://fanboy.co.nz/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","Fanboy's Enhanced Tracking List","https://fanboy.co.nz/enhancedstats.txt",NULL,NULL,NULL,NULL
266,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyList\">EasyList</a>, <a href=\"https://filterlists.com/#EasyPrivacy\">EasyPrivacy</a>, and <a href=\"https://filterlists.com/#FanboysEnhancedTrackingList\">Fanboy's Enhanced Tracking List</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","Fanboy's Complete List","https://fanboy.co.nz/r/fanboy-complete.txt",NULL,NULL,NULL,NULL
267,"2017-10-28 15:01:31","EasyList Lithuania is an affiliated filter list written by gymka that specifically removes adverts on Lithuanian language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"algimantas@margevicius.lt","https://forums.lanik.us/viewforum.php?f=101","http://margevicius.lt/easylist_lithuania/",NULL,NULL,"2017-10-28 15:01:31","EasyList Lithuania","http://margevicius.lt/easylistlithuania.txt",NULL,NULL,NULL,NULL
268,"2017-10-28 15:01:31","This is a lite version of EasyList. Only for Simplified Chinese language websites.","https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt",NULL,"cjxlist@gmail.com","http://abpchina.org/forum/forum.php","http://abpchina.org/forum/forum.php?mod=viewthread&tid=29667","https://github.com/cjx82630/cjxlist/issues",NULL,"2017-10-28 15:01:31","EasyList Lite China","https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt",NULL,NULL,NULL,NULL
269,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListItaly\">EasyList Italy</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Italy + EasyList","https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt",NULL,NULL,NULL,NULL
270,"2017-10-28 15:01:31","This is a list of free/bulk domain registration services, who register 2nd level domains for free or almost free.","http://mirror1.malwaredomains.com/files/bulk_registrars.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Bulk Registrars","http://mirror1.malwaredomains.com/files/bulk_registrars.txt",NULL,NULL,NULL,NULL
271,"2017-10-28 15:01:31","This is a list of malware domains generated from malwaredomains.com data.","https://easylist-downloads.adblockplus.org/malwaredomains_full.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Adblock Plus Malware Domains Full","https://easylist-downloads.adblockplus.org/malwaredomains_full.txt",NULL,NULL,NULL,NULL
272,"2017-10-28 15:01:31","Blocks trackers.",NULL,NULL,"support@disconnect.me",NULL,"https://disconnect.me/trackerprotection",NULL,NULL,"2017-10-28 15:01:31","Disconnect Tracking Filter List","https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt",NULL,NULL,NULL,NULL
273,"2017-10-28 15:01:31","Blocks malware.",NULL,NULL,"support@disconnect.me",NULL,"https://disconnect.me/trackerprotection",NULL,NULL,"2017-10-28 15:01:31","Disconnect Malware Filter List","https://s3.amazonaws.com/lists.disconnect.me/simple_malware.txt",NULL,NULL,NULL,NULL
274,"2017-10-28 15:01:31","Blocks malvertising.",NULL,NULL,"support@disconnect.me",NULL,"https://disconnect.me/trackerprotection",NULL,NULL,"2017-10-28 15:01:31","Disconnect Malvertising Filter List","https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt",NULL,NULL,NULL,NULL
275,"2017-10-28 15:01:31","Blocks advertisements.",NULL,NULL,"support@disconnect.me",NULL,"https://disconnect.me/trackerprotection",NULL,NULL,"2017-10-28 15:01:31","Disconnect Advertising Filter List","https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt",NULL,NULL,NULL,NULL
276,"2017-10-28 15:01:31","Use this file to prevent your computer from connecting to selected internet hosts. This is an easy and effective way to protect you from many types of spyware, reduces bandwidth use, blocks certain pop-up traps, prevents user tracking by way of \"web bugs\" embedded in spam, provides partial protection to IE from certain web-based exploits and blocks most advertising you would otherwise be subjected to on the internet.","http://someonewhocares.org/hosts/",NULL,"hosts@someonewhocares.org",NULL,"http://someonewhocares.org/hosts/",NULL,NULL,"2017-10-28 15:01:31","Dan Pollock's Hosts","http://someonewhocares.org/hosts/zero/hosts",NULL,NULL,NULL,NULL
277,"2017-10-28 15:01:31","Czech filters for Adblock Plus.","http://adblock.dajbych.net/adblock.txt",NULL,NULL,NULL,"http://adblock.dajbych.net/",NULL,NULL,"2017-10-28 15:01:31","Czech Filters for AdBlock","http://adblock.dajbych.net/adblock.txt",NULL,NULL,NULL,NULL
278,"2017-10-28 15:01:31","Corset is a subscription filter to block intruding ads on sites using Korean.","https://code.google.com/archive/p/abp-corset/",NULL,"corset@tistory.com",NULL,"http://corset.tistory.com/",NULL,NULL,"2017-10-28 15:01:31","Corset","https://web.archive.org/web/20110212174029/http://abp-corset.googlecode.com/hg/corset.txt",NULL,NULL,NULL,NULL
279,"2017-10-28 15:01:31","EFF maintains a Privacy Badger \"yellowlist\" of domains for which requests are allowed but Privacy Badger restricts access or availability of objectionable cookies and potentially other objectionable identifiers.","https://github.com/EFForg/privacybadgerchrome/blob/master/doc/yellowlist-criteria.md","https://supporters.eff.org/donate/support-privacy-badger",NULL,NULL,"https://www.eff.org/privacybadger","https://github.com/EFForg/privacybadgerfirefox/issues",NULL,"2017-10-28 15:01:31","Cookie Blocklist","https://www.eff.org/files/cookieblocklist.txt",NULL,NULL,NULL,NULL
280,"2017-10-28 15:01:31","Clickbait Blocklist just blocks the most annoying clickbait ads. I don't mind ads; I just don't want clickbait crap about shocking celebrity photos and \"deep searches\" for local singles.","https://github.com/cpeterso/clickbait-blocklist/",NULL,NULL,NULL,"https://github.com/cpeterso/clickbait-blocklist/",NULL,NULL,"2017-10-28 15:01:31","Clickbait Blocklist","https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt",NULL,NULL,NULL,NULL
281,"2017-10-28 15:01:31","Removes annoyances, self-promotion and privacy protection on Chinese websites.","https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt",NULL,"cjxlist@gmail.com","http://abpchina.org/forum/forum.php","http://abpchina.org/forum/forum.php?mod=viewthread&tid=29667","https://github.com/cjx82630/cjxlist/issues",NULL,"2017-10-28 15:01:31","CJX's Annoyance List","https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt",NULL,NULL,NULL,NULL
282,"2017-10-28 15:01:31","CAMELEON is a free system that helps Internet users or administrators to blocks web-adverts.","http://sysctl.org/cameleon/",NULL,"philippe@sysctl.org",NULL,"http://sysctl.org/cameleon/",NULL,NULL,"2017-10-28 15:01:31","CAMELEON Hosts","http://sysctl.org/cameleon/hosts",NULL,NULL,NULL,NULL
283,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#BulgarianList\">Bulgarian List</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","Bulgarian List + EasyList","https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt",NULL,NULL,NULL,NULL
284,"2017-10-28 15:01:31","On this page you can find updated lists to block unwanted content in your favorite browser. With their help, the pesky ads that some sites terrorizing customers will be hidden.","https://stanev.org/abp/",NULL,"alex@stanev.org",NULL,"https://stanev.org/abp/",NULL,NULL,"2017-10-28 15:01:31","Bulgarian List","https://stanev.org/abp/adblock_bg.txt",NULL,NULL,NULL,NULL
285,"2017-10-28 15:01:31","This is a list of dynamic DNS providers.","http://mirror1.malwaredomains.com/files/dynamic_dns.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Dynamic DNS","http://mirror1.malwaredomains.com/files/dynamic_dns.txt",NULL,NULL,NULL,NULL
286,"2017-10-28 15:01:31","This is a list of free web hosting services.","http://mirror1.malwaredomains.com/files/freewebhosts.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Free Web Hosts","http://mirror1.malwaredomains.com/files/freewebhosts.txt",NULL,NULL,NULL,NULL
287,"2017-10-28 15:01:31","This is a list of malware domains.",NULL,"http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Malware Domains","http://mirror1.malwaredomains.com/files/justdomains",NULL,NULL,NULL,NULL
288,"2017-10-28 15:01:31","This is a list of long-lived, \"immortal,\" malware domains.","http://mirror1.malwaredomains.com/files/immortal_domains.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Malware Domains Immortal","http://mirror1.malwaredomains.com/files/immortal_domains.txt",NULL,NULL,NULL,NULL
289,"2017-10-28 15:01:31","EasyList Italy is a filter list written by the EasyList author Khrin that specifically removes adverts on Italian language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylistitaly@gmail.com","https://forums.lanik.us/viewforum.php?f=96","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:31","EasyList Italy","https://easylist-downloads.adblockplus.org/easylistitaly.txt",NULL,NULL,NULL,NULL
290,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListHebrew\">EasyList Hebrew</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Hebrew + EasyList","https://easylist-downloads.adblockplus.org/israellist+easylist.txt",NULL,NULL,NULL,NULL
291,"2017-10-28 15:01:31","EasyList Hebrew is an [EasyList] affiliated filter list written by BsT that specifically removes adverts on Hebrew language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylisthebrew@gmail.com",NULL,"https://github.com/easylist/EasyListHebrew","https://github.com/easylist/EasyListHebrew/issues",NULL,"2017-10-28 15:01:31","EasyList Hebrew","https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt",NULL,NULL,NULL,NULL
292,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListGermany\">EasyList Germany</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Germany + EasyList","https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt",NULL,NULL,NULL,NULL
293,"2017-10-28 15:01:31","EasyList Germany is a filter list written by the EasyList authors MonztA, Famlam, and Khrin that specifically removes adverts on German language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"easylist.germany@gmail.com","https://forums.lanik.us/viewforum.php?f=90","https://easylist.to/","https://github.com/easylist/easylistgermany/issues",NULL,"2017-10-28 15:01:31","EasyList Germany","https://easylist-downloads.adblockplus.org/easylistgermany.txt",NULL,NULL,NULL,NULL
294,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListDutch\">EasyList Dutch</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Dutch + EasyList","https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt",NULL,NULL,NULL,NULL
295,"2017-10-28 15:01:31","EasyList Dutch is an [EasyList] affiliated filter list written by the EasyList author Famlam that specifically removes adverts on Dutch language websites.","https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",NULL,"fam.lam@live.nl","https://forums.lanik.us/viewforum.php?f=100","https://easylist.to/",NULL,NULL,"2017-10-28 15:01:31","EasyList Dutch","https://easylist-downloads.adblockplus.org/easylistdutch.txt",NULL,NULL,NULL,NULL
296,"2017-10-28 15:01:31","Low spec for equipment extremists blocked.","http://blogram.net/2010/04/23/adblock/",NULL,NULL,NULL,"http://blogram.net/2010/04/23/adblock/",NULL,NULL,"2017-10-28 15:01:31","BLOGRAM Blog Parts Filter List for Japan","http://blogram.net/wp-content/uploads/easylist4.txt",NULL,NULL,NULL,NULL
297,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListCzechandSlovak\">EasyList Czech and Slovak</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList Czech and Slovak + EasyList","https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt",NULL,NULL,NULL,NULL
298,"2017-10-28 15:01:31","Chinese supplement for the EasyList filters on IT sites.",NULL,NULL,NULL,NULL,"https://github.com/nfer/easylistchina_it","https://github.com/nfer/easylistchina_it/issues",NULL,"2017-10-28 15:01:31","EasyList China in IT","https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt",NULL,NULL,NULL,NULL
299,"2017-10-28 15:01:31","A list combining <a href=\"https://filterlists.com/#EasyListChina\">EasyList China</a> and <a href=\"https://filterlists.com/#EasyList\">EasyList</a>.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,"2017-10-28 15:01:31","EasyList China + EasyList","https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt",NULL,NULL,NULL,NULL
300,"2017-10-28 15:01:31","Chinese supplement for the EasyList filters.","https://easylist-downloads.adblockplus.org/easylistchina.txt",NULL,"easylist.china@gmail.com","http://abpchina.org/forum/forum.php","http://abpchina.org/forum/forum.php?mod=viewthread&tid=29667",NULL,NULL,"2017-10-28 15:01:31","EasyList China","https://easylist-downloads.adblockplus.org/easylistchina.txt",NULL,NULL,NULL,NULL
301,"2017-10-28 15:01:31","EasyList is the primary filter list that removes most adverts from international web pages, including unwanted frames, images, and objects. It is the most popular list used by many ad blockers and forms the basis of over a dozen combination and supplementary filter lists.","https://easylist.to/",NULL,"easylist.subscription@gmail.com","https://forums.lanik.us/viewforum.php?f=23","https://easylist.to/","https://github.com/easylist/easylist/issues",NULL,"2017-10-28 15:01:31","EasyList","https://easylist.to/easylist/easylist.txt",NULL,NULL,NULL,NULL
302,"2017-10-28 15:01:31","This list summarizes the top 20 attacking class C (/24) subnets over the last three days. The number of 'attacks' indicates the number of targets reporting scans from this subnet.","http://feeds.dshield.org/block.txt",NULL,"info@dshield.org",NULL,"https://www.dshield.org/xml.html",NULL,NULL,"2017-10-28 15:01:31","DShield.org Recommended Block List","http://feeds.dshield.org/block.txt",NULL,NULL,NULL,NULL
303,"2017-10-28 15:01:31","This is a list of URL shorteners.","http://mirror1.malwaredomains.com/files/url_shorteners.txt","http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH URL Shorteners","http://mirror1.malwaredomains.com/files/url_shorteners.txt",NULL,NULL,NULL,NULL
304,"2017-10-28 15:01:31","A list of Skype resolvers.",NULL,"http://www.malwaredomains.com/?page_id=675","malwaredomains@gmail.com",NULL,"http://www.malwaredomains.com/",NULL,NULL,"2017-10-28 15:01:31","DNS-BH Skype Resolvers","http://mirror1.malwaredomains.com/files/Skype-resolvers.txt",NULL,NULL,NULL,NULL
305,"2017-10-28 15:01:31","Official filter list file used for blocking ads on Czech and Slovak websites.","https://github.com/tomasko126/easylistczechandslovak",NULL,"tomastaro@adblock.sk","https://easylist-czech-and-slovak.tenderapp.com/","https://adblock.sk/","https://github.com/tomasko126/easylistczechandslovak/issues",NULL,"2017-10-28 15:01:31","EasyList Czech and Slovak","https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt",NULL,NULL,NULL,NULL
306,"2017-10-28 15:01:31","Block only suggestions.","https://youtube.adblockplus.me/","https://adblockplus.org/en/donate","subscriptionlist@adblockplus.org",NULL,"https://youtube.adblockplus.me/",NULL,NULL,"2017-10-28 15:01:31","YouTube: Remove Youtube Suggestions","https://easylist-downloads.adblockplus.org/yt_annoyances_suggestions.txt",NULL,NULL,NULL,NULL
Can't render this file because it contains an unexpected character in line 6 and column 417.

View file

@ -0,0 +1,3 @@
FilterListId,LanguageId,"CreatedDateUtc","ModifiedDateUtc"
1,141,"2017-10-31 20:28:03","2017-10-31 20:28:03"
6,141,"2017-11-01 17:04:04","2017-11-01 17:04:04"
1 FilterListId LanguageId CreatedDateUtc ModifiedDateUtc
2 1 141 2017-10-31 20:28:03 2017-10-31 20:28:03
3 6 141 2017-11-01 17:04:04 2017-11-01 17:04:04

View file

@ -0,0 +1 @@
FilterListId,RuleId,"CreatedDateUtc","ModifiedDateUtc"
1 FilterListId RuleId CreatedDateUtc ModifiedDateUtc

3
data/forks.csv Normal file
View file

@ -0,0 +1,3 @@
ForkFilterListId,UpstreamFilterListId,"CreatedDateUtc","ModifiedDateUtc"
7,9,"2017-11-04 07:51:50","2017-11-04 07:51:50"
8,9,"2017-11-04 07:51:53","2017-11-04 07:51:53"
1 ForkFilterListId UpstreamFilterListId CreatedDateUtc ModifiedDateUtc
2 7 9 2017-11-04 07:51:50 2017-11-04 07:51:50
3 8 9 2017-11-04 07:51:53 2017-11-04 07:51:53

185
data/languages.csv Normal file
View file

@ -0,0 +1,185 @@
Id,"CreatedDateUtc","Iso6391","Iso6392","Iso6392B","Iso6392T","Iso6393","LocalName","ModifiedDateUtc","Name"
1,"2017-10-28 15:01:29","ab","abk","abk","abk","abk","Аҧсуа","2017-10-28 15:01:29","Abkhaz"
2,"2017-10-28 15:01:29","oc","oci","oci","oci","oci","Occitan","2017-10-28 15:01:29","Occitan"
3,"2017-10-28 15:01:29","oj","oji","oji","oji","oji","ᐊᓂᔑᓈᐯᒧᐎᓐ","2017-10-28 15:01:29","Ojibwe"
4,"2017-10-28 15:01:29","cu","chu","chu","chu","chu","Словѣ́ньскъ","2017-10-28 15:01:29","Old Church Slavonic"
5,"2017-10-28 15:01:29","om","orm","orm","orm","orm","Afaan Oromoo","2017-10-28 15:01:29","Oromo"
6,"2017-10-28 15:01:29","or","ori","ori","ori","ori","ଓଡି଼ଆ","2017-10-28 15:01:29","Oriya"
7,"2017-10-28 15:01:29","os","oss","oss","oss","oss","Ирон æвзаг","2017-10-28 15:01:29","Ossetian"
8,"2017-10-28 15:01:29","pa","pan","pan","pan","pan","ਪੰਜਾਬੀ","2017-10-28 15:01:29","Panjabi"
9,"2017-10-28 15:01:29","pi","pli","pli","pli","pli","पाऴि","2017-10-28 15:01:29","Pāli"
10,"2017-10-28 15:01:29","fa","fas","per","fas","fas","فارسی","2017-10-28 15:01:29","Persian"
11,"2017-10-28 15:01:29","pl","pol","pol","pol","pol","Polski","2017-10-28 15:01:29","Polish"
12,"2017-10-28 15:01:29","ps","pus","pus","pus","pus","پښتو","2017-10-28 15:01:29","Pashto"
13,"2017-10-28 15:01:29","pt","por","por","por","por","Português","2017-10-28 15:01:29","Portuguese"
14,"2017-10-28 15:01:29","qu","que","que","que","que","Runa Simi","2017-10-28 15:01:29","Quechua"
15,"2017-10-28 15:01:29","rm","roh","roh","roh","roh","Rumantsch","2017-10-28 15:01:29","Romansh"
16,"2017-10-28 15:01:29","rn","run","run","run","run","Kirundi","2017-10-28 15:01:29","Kirundi"
17,"2017-10-28 15:01:29","ro","ron","rum","ron","ron","Română","2017-10-28 15:01:29","Romanian"
18,"2017-10-28 15:01:29","ru","rus","rus","rus","rus","Русский","2017-10-28 15:01:29","Russian"
19,"2017-10-28 15:01:29","sa","san","san","san","san","संस्कृतम्","2017-10-28 15:01:29","Sanskrit"
20,"2017-10-28 15:01:29","sc","srd","srd","srd","srd","Sardu","2017-10-28 15:01:29","Sardinian"
21,"2017-10-28 15:01:29","nr","nbl","nbl","nbl","nbl","isiNdebele","2017-10-28 15:01:29","Southern Ndebele"
22,"2017-10-28 15:01:29","sd","snd","snd","snd","snd","سنڌي‎","2017-10-28 15:01:29","Sindhi"
23,"2017-10-28 15:01:29","ii","iii","iii","iii","iii","ꆈꌠ꒿ Nuosuhxop","2017-10-28 15:01:29","Nuosu"
24,"2017-10-28 15:01:29","nn","nno","nno","nno","nno","Norsk (Nynorsk)","2017-10-28 15:01:29","Norwegian Nynorsk"
25,"2017-10-28 15:01:29","lt","lit","lit","lit","lit","Lietuvių","2017-10-28 15:01:29","Lithuanian"
26,"2017-10-28 15:01:29","lu","lub","lub","lub","lub","Tshiluba","2017-10-28 15:01:29","Luba-Katanga"
27,"2017-10-28 15:01:29","lv","lav","lav","lav","lav","Latviešu","2017-10-28 15:01:29","Latvian"
28,"2017-10-28 15:01:29","gv","glv","glv","glv","glv","Gaelg","2017-10-28 15:01:29","Manx"
29,"2017-10-28 15:01:29","mk","mkd","mac","mkd","mkd","Македонски","2017-10-28 15:01:29","Macedonian"
30,"2017-10-28 15:01:29","mg","mlg","mlg","mlg","mlg","Malagasy","2017-10-28 15:01:29","Malagasy"
31,"2017-10-28 15:01:29","ms","msa","may","msa","msa","Bahasa Melayu","2017-10-28 15:01:29","Malay"
32,"2017-10-28 15:01:29","ml","mal","mal","mal","mal","മലയാളം","2017-10-28 15:01:29","Malayalam"
33,"2017-10-28 15:01:29","mt","mlt","mlt","mlt","mlt","Malti","2017-10-28 15:01:29","Maltese"
34,"2017-10-28 15:01:29","mi","mri","mao","mri","mri","Māori","2017-10-28 15:01:29","Māori"
35,"2017-10-28 15:01:29","mr","mar","mar","mar","mar","मराठी","2017-10-28 15:01:29","Marathi"
36,"2017-10-28 15:01:29","mh","mah","mah","mah","mah","Kajin M̧ajeļ","2017-10-28 15:01:29","Marshallese"
37,"2017-10-28 15:01:29","mn","mon","mon","mon","mon","Монгол","2017-10-28 15:01:29","Mongolian"
38,"2017-10-28 15:01:29","na","nau","nau","nau","nau","Dorerin Naoero","2017-10-28 15:01:29","Nauru"
39,"2017-10-28 15:01:29","nv","nav","nav","nav","nav","Diné Bizaad","2017-10-28 15:01:29","Navajo"
40,"2017-10-28 15:01:29","nd","nde","nde","nde","nde","isiNdebele","2017-10-28 15:01:29","Northern Ndebele"
41,"2017-10-28 15:01:29","ne","nep","nep","nep","nep","नेपाली","2017-10-28 15:01:29","Nepali"
42,"2017-10-28 15:01:29","ng","ndo","ndo","ndo","ndo","Owambo","2017-10-28 15:01:29","Ndonga"
43,"2017-10-28 15:01:29","nb","nob","nob","nob","nob","Norsk (Bokmål)","2017-10-28 15:01:29","Norwegian Bokmål"
44,"2017-10-28 15:01:29","no","nor","nor","nor","nor","Norsk","2017-10-28 15:01:29","Norwegian"
45,"2017-10-28 15:01:29","lo","lao","lao","lao","lao","ພາສາລາວ","2017-10-28 15:01:29","Lao"
46,"2017-10-28 15:01:29","se","sme","sme","sme","sme","Sámegiella","2017-10-28 15:01:29","Northern Sami"
47,"2017-10-28 15:01:29","sg","sag","sag","sag","sag","Sängö","2017-10-28 15:01:29","Sango"
48,"2017-10-28 15:01:29","tr","tur","tur","tur","tur","Türkçe","2017-10-28 15:01:29","Turkish"
49,"2017-10-28 15:01:29","ts","tso","tso","tso","tso","Xitsonga","2017-10-28 15:01:29","Tsonga"
50,"2017-10-28 15:01:29","tt","tat","tat","tat","tat","Татарча","2017-10-28 15:01:29","Tatar"
51,"2017-10-28 15:01:29","tw","twi","twi","twi","twi","Twi","2017-10-28 15:01:29","Twi"
52,"2017-10-28 15:01:29","ty","tah","tah","tah","tah","Reo Māohi","2017-10-28 15:01:29","Tahitian"
53,"2017-10-28 15:01:29","ug","uig","uig","uig","uig","ئۇيغۇرچه","2017-10-28 15:01:29","Uyghur"
54,"2017-10-28 15:01:29","uk","ukr","ukr","ukr","ukr","Українська","2017-10-28 15:01:29","Ukrainian"
55,"2017-10-28 15:01:29","ur","urd","urd","urd","urd","اردو","2017-10-28 15:01:29","Urdu"
56,"2017-10-28 15:01:29","uz","uzb","uzb","uzb","uzb","Ozbek","2017-10-28 15:01:29","Uzbek"
57,"2017-10-28 15:01:29","ve","ven","ven","ven","ven","Tshivenḓa","2017-10-28 15:01:29","Venda"
58,"2017-10-28 15:01:29","vi","vie","vie","vie","vie","Tiếng Việt","2017-10-28 15:01:29","Vietnamese"
59,"2017-10-28 15:01:29","vo","vol","vol","vol","vol","Volapük","2017-10-28 15:01:29","Volapük"
60,"2017-10-28 15:01:29","wa","wln","wln","wln","wln","Walon","2017-10-28 15:01:29","Walloon"
61,"2017-10-28 15:01:29","cy","cym","wel","cym","cym","Cymraeg","2017-10-28 15:01:29","Welsh"
62,"2017-10-28 15:01:29","wo","wol","wol","wol","wol","Wolof","2017-10-28 15:01:29","Wolof"
63,"2017-10-28 15:01:29","fy","fry","fry","fry","fry","Frysk","2017-10-28 15:01:29","Western Frisian"
64,"2017-10-28 15:01:29","xh","xho","xho","xho","xho","isiXhosa","2017-10-28 15:01:29","Xhosa"
65,"2017-10-28 15:01:29","yi","yid","yid","yid","yid","ייִדיש","2017-10-28 15:01:29","Yiddish"
66,"2017-10-28 15:01:29","yo","yor","yor","yor","yor","Yorùbá","2017-10-28 15:01:29","Yoruba"
67,"2017-10-28 15:01:29","to","ton","ton","ton","ton","faka Tonga","2017-10-28 15:01:29","Tonga"
68,"2017-10-28 15:01:29","sm","smo","smo","smo","smo","Gagana Sāmoa","2017-10-28 15:01:29","Samoan"
69,"2017-10-28 15:01:29","tn","tsn","tsn","tsn","tsn","Setswana","2017-10-28 15:01:29","Tswana"
70,"2017-10-28 15:01:29","tk","tuk","tuk","tuk","tuk","Türkmençe","2017-10-28 15:01:29","Turkmen"
71,"2017-10-28 15:01:29","sr","srp","srp","srp","srp","Српски","2017-10-28 15:01:29","Serbian"
72,"2017-10-28 15:01:29","gd","gla","gla","gla","gla","Gàidhlig","2017-10-28 15:01:29","Gaelic"
73,"2017-10-28 15:01:29","sn","sna","sna","sna","sna","ChiShona","2017-10-28 15:01:29","Shona"
74,"2017-10-28 15:01:29","si","sin","sin","sin","sin","සිංහල","2017-10-28 15:01:29","Sinhala"
75,"2017-10-28 15:01:29","sk","slk","slo","slk","slk","Slovenčina","2017-10-28 15:01:29","Slovak"
76,"2017-10-28 15:01:29","sl","slv","slv","slv","slv","Slovenščina","2017-10-28 15:01:29","Slovene"
77,"2017-10-28 15:01:29","so","som","som","som","som","Soomaaliga","2017-10-28 15:01:29","Somali"
78,"2017-10-28 15:01:29","st","sot","sot","sot","sot","Sesotho","2017-10-28 15:01:29","Southern Sotho"
79,"2017-10-28 15:01:29","es","spa","spa","spa","spa","Español","2017-10-28 15:01:29","Spanish"
80,"2017-10-28 15:01:29","su","sun","sun","sun","sun","Basa Sunda","2017-10-28 15:01:29","Sundanese"
81,"2017-10-28 15:01:29","sw","swa","swa","swa","swa","Kiswahili","2017-10-28 15:01:29","Swahili"
82,"2017-10-28 15:01:29","ss","ssw","ssw","ssw","ssw","SiSwati","2017-10-28 15:01:29","Swati"
83,"2017-10-28 15:01:29","sv","swe","swe","swe","swe","Svenska","2017-10-28 15:01:29","Swedish"
84,"2017-10-28 15:01:29","ta","tam","tam","tam","tam","தமிழ்","2017-10-28 15:01:29","Tamil"
85,"2017-10-28 15:01:29","te","tel","tel","tel","tel","తెలుగు","2017-10-28 15:01:29","Telugu"
86,"2017-10-28 15:01:29","tg","tgk","tgk","tgk","tgk","Тоҷикӣ","2017-10-28 15:01:29","Tajik"
87,"2017-10-28 15:01:29","th","tha","tha","tha","tha","ภาษาไทย","2017-10-28 15:01:29","Thai"
88,"2017-10-28 15:01:29","ti","tir","tir","tir","tir","ትግርኛ","2017-10-28 15:01:29","Tigrinya"
89,"2017-10-28 15:01:29","bo","bod","tib","bod","bod","བོད་ཡིག","2017-10-28 15:01:29","Tibetan Standard"
90,"2017-10-28 15:01:29","tl","tgl","tgl","tgl","tgl","Tagalog","2017-10-28 15:01:29","Tagalog"
91,"2017-10-28 15:01:29","ln","lin","lin","lin","lin","Lingála","2017-10-28 15:01:29","Lingala"
92,"2017-10-28 15:01:29","li","lim","lim","lim","lim","Limburgs","2017-10-28 15:01:29","Limburgish"
93,"2017-10-28 15:01:29","lg","lug","lug","lug","lug","Luganda","2017-10-28 15:01:29","Ganda"
94,"2017-10-28 15:01:29","my","mya","bur","mya","mya","မြန်မာဘာသာ","2017-10-28 15:01:29","Burmese"
95,"2017-10-28 15:01:29","ca","cat","cat","cat","cat","Català","2017-10-28 15:01:29","Catalan"
96,"2017-10-28 15:01:29","ch","cha","cha","cha","cha","Chamoru","2017-10-28 15:01:29","Chamorro"
97,"2017-10-28 15:01:29","ce","che","che","che","che","Нохчийн","2017-10-28 15:01:29","Chechen"
98,"2017-10-28 15:01:29","ny","nya","nya","nya","nya","Chichewa","2017-10-28 15:01:29","Chichewa"
99,"2017-10-28 15:01:29","zh","zho","chi","zho","zho","中文","2017-10-28 15:01:29","Chinese"
100,"2017-10-28 15:01:29","cv","chv","chv","chv","chv","Чӑвашла","2017-10-28 15:01:29","Chuvash"
101,"2017-10-28 15:01:29","kw","cor","cor","cor","cor","Kernewek","2017-10-28 15:01:29","Cornish"
102,"2017-10-28 15:01:29","co","cos","cos","cos","cos","Corsu","2017-10-28 15:01:29","Corsican"
103,"2017-10-28 15:01:29","cr","cre","cre","cre","cre","ᓀᐦᐃᔭᐍᐏᐣ","2017-10-28 15:01:29","Cree"
104,"2017-10-28 15:01:29","hr","hrv","hrv","hrv","hrv","Hrvatski","2017-10-28 15:01:29","Croatian"
105,"2017-10-28 15:01:29","cs","ces","cze","ces","ces","Čeština","2017-10-28 15:01:29","Czech"
106,"2017-10-28 15:01:29","da","dan","dan","dan","dan","Dansk","2017-10-28 15:01:29","Danish"
107,"2017-10-28 15:01:29","dv","div","div","div","div","Divehi","2017-10-28 15:01:29","Divehi"
108,"2017-10-28 15:01:29","nl","nld","dut","nld","nld","Nederlands","2017-10-28 15:01:29","Dutch"
109,"2017-10-28 15:01:29","dz","dzo","dzo","dzo","dzo","རྫོང་ཁ","2017-10-28 15:01:29","Dzongkha"
110,"2017-10-28 15:01:29","en","eng","eng","eng","eng","English","2017-10-28 15:01:29","English"
111,"2017-10-28 15:01:29","eo","epo","epo","epo","epo","Esperanto","2017-10-28 15:01:29","Esperanto"
112,"2017-10-28 15:01:29","et","est","est","est","est","Eesti","2017-10-28 15:01:29","Estonian"
113,"2017-10-28 15:01:29","bg","bul","bul","bul","bul","Български","2017-10-28 15:01:29","Bulgarian"
114,"2017-10-28 15:01:29","ee","ewe","ewe","ewe","ewe","Eʋegbe","2017-10-28 15:01:29","Ewe"
115,"2017-10-28 15:01:29","br","bre","bre","bre","bre","Brezhoneg","2017-10-28 15:01:29","Breton"
116,"2017-10-28 15:01:29","bi","bis","bis","bis","bis","Bislama","2017-10-28 15:01:29","Bislama"
117,"2017-10-28 15:01:29","aa","aar","aar","aar","aar","Afaraf","2017-10-28 15:01:29","Afar"
118,"2017-10-28 15:01:29","af","afr","afr","afr","afr","Afrikaans","2017-10-28 15:01:29","Afrikaans"
119,"2017-10-28 15:01:29","ak","aka","aka","aka","aka","Akan","2017-10-28 15:01:29","Akan"
120,"2017-10-28 15:01:29","sq","sqi","alb","sqi","sqi","Shqip","2017-10-28 15:01:29","Albanian"
121,"2017-10-28 15:01:29","am","amh","amh","amh","amh","አማርኛ","2017-10-28 15:01:29","Amharic"
122,"2017-10-28 15:01:29","ar","ara","ara","ara","ara","العربية","2017-10-28 15:01:29","Arabic"
123,"2017-10-28 15:01:29","an","arg","arg","arg","arg","Aragonés","2017-10-28 15:01:29","Aragonese"
124,"2017-10-28 15:01:29","hy","hye","arm","hye","hye","Հայերեն","2017-10-28 15:01:29","Armenian"
125,"2017-10-28 15:01:29","as","asm","asm","asm","asm","অসমীয়া","2017-10-28 15:01:29","Assamese"
126,"2017-10-28 15:01:29","av","ava","ava","ava","ava","Авар","2017-10-28 15:01:29","Avaric"
127,"2017-10-28 15:01:29","ae","ave","ave","ave","ave","avesta","2017-10-28 15:01:29","Avestan"
128,"2017-10-28 15:01:29","ay","aym","aym","aym","aym","Aymar","2017-10-28 15:01:29","Aymara"
129,"2017-10-28 15:01:29","az","aze","aze","aze","aze","Azərbaycanca","2017-10-28 15:01:29","Azerbaijani"
130,"2017-10-28 15:01:29","bm","bam","bam","bam","bam","Bamanankan","2017-10-28 15:01:29","Bambara"
131,"2017-10-28 15:01:29","ba","bak","bak","bak","bak","Башҡортса","2017-10-28 15:01:29","Bashkir"
132,"2017-10-28 15:01:29","eu","eus","baq","eus","eus","Euskara","2017-10-28 15:01:29","Basque"
133,"2017-10-28 15:01:29","be","bel","bel","bel","bel","Беларуская","2017-10-28 15:01:29","Belarusian"
134,"2017-10-28 15:01:29","bn","ben","ben","ben","ben","বাংলা","2017-10-28 15:01:29","Bengali"
135,"2017-10-28 15:01:29","bh","bih","bih","bih","bih","भोजपुरी","2017-10-28 15:01:29","Bihari"
136,"2017-10-28 15:01:29","bs","bos","bos","bos","bos","Bosanski","2017-10-28 15:01:29","Bosnian"
137,"2017-10-28 15:01:29","fo","fao","fao","fao","fao","Føroyskt","2017-10-28 15:01:29","Faroese"
138,"2017-10-28 15:01:29","fj","fij","fij","fij","fij","Na Vosa Vaka-Viti","2017-10-28 15:01:29","Fijian"
139,"2017-10-28 15:01:29","fi","fin","fin","fin","fin","Suomi","2017-10-28 15:01:29","Finnish"
140,"2017-10-28 15:01:29","iu","iku","iku","iku","iku","ᐃᓄᒃᑎᑐᑦ","2017-10-28 15:01:29","Inuktitut"
141,"2017-10-28 15:01:29","ja","jpn","jpn","jpn","jpn","日本語","2017-10-28 15:01:29","Japanese"
142,"2017-10-28 15:01:29","jv","jav","jav","jav","jav","Basa Jawa","2017-10-28 15:01:29","Javanese"
143,"2017-10-28 15:01:29","kl","kal","kal","kal","kal","Kalaallisut","2017-10-28 15:01:29","Kalaallisut"
144,"2017-10-28 15:01:29","kn","kan","kan","kan","kan","ಕನ್ನಡ","2017-10-28 15:01:29","Kannada"
145,"2017-10-28 15:01:29","kr","kau","kau","kau","kau","Kanuri","2017-10-28 15:01:29","Kanuri"
146,"2017-10-28 15:01:29","ks","kas","kas","kas","kas","كشميري","2017-10-28 15:01:29","Kashmiri"
147,"2017-10-28 15:01:29","kk","kaz","kaz","kaz","kaz","Қазақша","2017-10-28 15:01:29","Kazakh"
148,"2017-10-28 15:01:29","km","khm","khm","khm","khm","ភាសាខ្មែរ","2017-10-28 15:01:29","Khmer"
149,"2017-10-28 15:01:29","ki","kik","kik","kik","kik","Gĩkũyũ","2017-10-28 15:01:29","Kikuyu"
150,"2017-10-28 15:01:29","rw","kin","kin","kin","kin","Kinyarwanda","2017-10-28 15:01:29","Kinyarwanda"
151,"2017-10-28 15:01:29","ky","kir","kir","kir","kir","Кыргызча","2017-10-28 15:01:29","Kyrgyz"
152,"2017-10-28 15:01:29","kv","kom","kom","kom","kom","Коми","2017-10-28 15:01:29","Komi"
153,"2017-10-28 15:01:29","kg","kon","kon","kon","kon","Kongo","2017-10-28 15:01:29","Kongo"
154,"2017-10-28 15:01:29","ko","kor","kor","kor","kor","한국어","2017-10-28 15:01:29","Korean"
155,"2017-10-28 15:01:29","ku","kur","kur","kur","kur","Kurdî","2017-10-28 15:01:29","Kurdish"
156,"2017-10-28 15:01:29","kj","kua","kua","kua","kua","Kuanyama","2017-10-28 15:01:29","Kwanyama"
157,"2017-10-28 15:01:29","la","lat","lat","lat","lat","Latina","2017-10-28 15:01:29","Latin"
158,"2017-10-28 15:01:29","lb","ltz","ltz","ltz","ltz","Lëtzebuergesch","2017-10-28 15:01:29","Luxembourgish"
159,"2017-10-28 15:01:29","it","ita","ita","ita","ita","Italiano","2017-10-28 15:01:29","Italian"
160,"2017-10-28 15:01:29","is","isl","ice","isl","isl","Íslenska","2017-10-28 15:01:29","Icelandic"
161,"2017-10-28 15:01:29","io","ido","ido","ido","ido","Ido","2017-10-28 15:01:29","Ido"
162,"2017-10-28 15:01:29","ik","ipk","ipk","ipk","ipk","Iñupiak","2017-10-28 15:01:29","Inupiaq"
163,"2017-10-28 15:01:29","fr","fra","fre","fra","fra","Français","2017-10-28 15:01:29","French"
164,"2017-10-28 15:01:29","ff","ful","ful","ful","ful","Fulfulde","2017-10-28 15:01:29","Fula"
165,"2017-10-28 15:01:29","gl","glg","glg","glg","glg","Galego","2017-10-28 15:01:29","Galician"
166,"2017-10-28 15:01:29","ka","kat","geo","kat","kat","ქართული","2017-10-28 15:01:29","Georgian"
167,"2017-10-28 15:01:29","de","deu","ger","deu","deu","Deutsch","2017-10-28 15:01:29","German"
168,"2017-10-28 15:01:29","el","ell","gre","ell","ell","Ελληνικά","2017-10-28 15:01:29","Greek"
169,"2017-10-28 15:01:29","gn","grn","grn","grn","grn","Avañe'ẽ","2017-10-28 15:01:29","Guaraní"
170,"2017-10-28 15:01:29","gu","guj","guj","guj","guj","ગુજરાતી","2017-10-28 15:01:29","Gujarati"
171,"2017-10-28 15:01:29","ht","hat","hat","hat","hat","Kreyòl Ayisyen","2017-10-28 15:01:29","Haitian"
172,"2017-10-28 15:01:29","za","zha","zha","zha","zha","Cuengh","2017-10-28 15:01:29","Zhuang"
173,"2017-10-28 15:01:29","ha","hau","hau","hau","hau","هَوُسَ","2017-10-28 15:01:29","Hausa"
174,"2017-10-28 15:01:29","hz","her","her","her","her","Otjiherero","2017-10-28 15:01:29","Herero"
175,"2017-10-28 15:01:29","hi","hin","hin","hin","hin","हिन्दी","2017-10-28 15:01:29","Hindi"
176,"2017-10-28 15:01:29","ho","hmo","hmo","hmo","hmo","Hiri Motu","2017-10-28 15:01:29","Hiri Motu"
177,"2017-10-28 15:01:29","hu","hun","hun","hun","hun","Magyar","2017-10-28 15:01:29","Hungarian"
178,"2017-10-28 15:01:29","ia","ina","ina","ina","ina","Interlingua","2017-10-28 15:01:29","Interlingua"
179,"2017-10-28 15:01:29","id","ind","ind","ind","ind","Bahasa Indonesia","2017-10-28 15:01:29","Indonesian"
180,"2017-10-28 15:01:29","ie","ile","ile","ile","ile","Interlingue","2017-10-28 15:01:29","Interlingue"
181,"2017-10-28 15:01:29","ga","gle","gle","gle","gle","Gaeilge","2017-10-28 15:01:29","Irish"
182,"2017-10-28 15:01:29","ig","ibo","ibo","ibo","ibo","Igbo","2017-10-28 15:01:29","Igbo"
183,"2017-10-28 15:01:29","he","heb","heb","heb","heb","עברית","2017-10-28 15:01:29","Hebrew"
184,"2017-10-28 15:01:29","zu","zul","zul","zul","zul","isiZulu","2017-10-28 15:01:29","Zulu"
1 Id CreatedDateUtc Iso6391 Iso6392 Iso6392B Iso6392T Iso6393 LocalName ModifiedDateUtc Name
2 1 2017-10-28 15:01:29 ab abk abk abk abk Аҧсуа 2017-10-28 15:01:29 Abkhaz
3 2 2017-10-28 15:01:29 oc oci oci oci oci Occitan 2017-10-28 15:01:29 Occitan
4 3 2017-10-28 15:01:29 oj oji oji oji oji ᐊᓂᔑᓈᐯᒧᐎᓐ 2017-10-28 15:01:29 Ojibwe
5 4 2017-10-28 15:01:29 cu chu chu chu chu Словѣ́ньскъ 2017-10-28 15:01:29 Old Church Slavonic
6 5 2017-10-28 15:01:29 om orm orm orm orm Afaan Oromoo 2017-10-28 15:01:29 Oromo
7 6 2017-10-28 15:01:29 or ori ori ori ori ଓଡି଼ଆ 2017-10-28 15:01:29 Oriya
8 7 2017-10-28 15:01:29 os oss oss oss oss Ирон æвзаг 2017-10-28 15:01:29 Ossetian
9 8 2017-10-28 15:01:29 pa pan pan pan pan ਪੰਜਾਬੀ 2017-10-28 15:01:29 Panjabi
10 9 2017-10-28 15:01:29 pi pli pli pli pli पाऴि 2017-10-28 15:01:29 Pāli
11 10 2017-10-28 15:01:29 fa fas per fas fas فارسی 2017-10-28 15:01:29 Persian
12 11 2017-10-28 15:01:29 pl pol pol pol pol Polski 2017-10-28 15:01:29 Polish
13 12 2017-10-28 15:01:29 ps pus pus pus pus پښتو 2017-10-28 15:01:29 Pashto
14 13 2017-10-28 15:01:29 pt por por por por Português 2017-10-28 15:01:29 Portuguese
15 14 2017-10-28 15:01:29 qu que que que que Runa Simi 2017-10-28 15:01:29 Quechua
16 15 2017-10-28 15:01:29 rm roh roh roh roh Rumantsch 2017-10-28 15:01:29 Romansh
17 16 2017-10-28 15:01:29 rn run run run run Kirundi 2017-10-28 15:01:29 Kirundi
18 17 2017-10-28 15:01:29 ro ron rum ron ron Română 2017-10-28 15:01:29 Romanian
19 18 2017-10-28 15:01:29 ru rus rus rus rus Русский 2017-10-28 15:01:29 Russian
20 19 2017-10-28 15:01:29 sa san san san san संस्कृतम् 2017-10-28 15:01:29 Sanskrit
21 20 2017-10-28 15:01:29 sc srd srd srd srd Sardu 2017-10-28 15:01:29 Sardinian
22 21 2017-10-28 15:01:29 nr nbl nbl nbl nbl isiNdebele 2017-10-28 15:01:29 Southern Ndebele
23 22 2017-10-28 15:01:29 sd snd snd snd snd سنڌي‎ 2017-10-28 15:01:29 Sindhi
24 23 2017-10-28 15:01:29 ii iii iii iii iii ꆈꌠ꒿ Nuosuhxop 2017-10-28 15:01:29 Nuosu
25 24 2017-10-28 15:01:29 nn nno nno nno nno Norsk (Nynorsk) 2017-10-28 15:01:29 Norwegian Nynorsk
26 25 2017-10-28 15:01:29 lt lit lit lit lit Lietuvių 2017-10-28 15:01:29 Lithuanian
27 26 2017-10-28 15:01:29 lu lub lub lub lub Tshiluba 2017-10-28 15:01:29 Luba-Katanga
28 27 2017-10-28 15:01:29 lv lav lav lav lav Latviešu 2017-10-28 15:01:29 Latvian
29 28 2017-10-28 15:01:29 gv glv glv glv glv Gaelg 2017-10-28 15:01:29 Manx
30 29 2017-10-28 15:01:29 mk mkd mac mkd mkd Македонски 2017-10-28 15:01:29 Macedonian
31 30 2017-10-28 15:01:29 mg mlg mlg mlg mlg Malagasy 2017-10-28 15:01:29 Malagasy
32 31 2017-10-28 15:01:29 ms msa may msa msa Bahasa Melayu 2017-10-28 15:01:29 Malay
33 32 2017-10-28 15:01:29 ml mal mal mal mal മലയാളം 2017-10-28 15:01:29 Malayalam
34 33 2017-10-28 15:01:29 mt mlt mlt mlt mlt Malti 2017-10-28 15:01:29 Maltese
35 34 2017-10-28 15:01:29 mi mri mao mri mri Māori 2017-10-28 15:01:29 Māori
36 35 2017-10-28 15:01:29 mr mar mar mar mar मराठी 2017-10-28 15:01:29 Marathi
37 36 2017-10-28 15:01:29 mh mah mah mah mah Kajin M̧ajeļ 2017-10-28 15:01:29 Marshallese
38 37 2017-10-28 15:01:29 mn mon mon mon mon Монгол 2017-10-28 15:01:29 Mongolian
39 38 2017-10-28 15:01:29 na nau nau nau nau Dorerin Naoero 2017-10-28 15:01:29 Nauru
40 39 2017-10-28 15:01:29 nv nav nav nav nav Diné Bizaad 2017-10-28 15:01:29 Navajo
41 40 2017-10-28 15:01:29 nd nde nde nde nde isiNdebele 2017-10-28 15:01:29 Northern Ndebele
42 41 2017-10-28 15:01:29 ne nep nep nep nep नेपाली 2017-10-28 15:01:29 Nepali
43 42 2017-10-28 15:01:29 ng ndo ndo ndo ndo Owambo 2017-10-28 15:01:29 Ndonga
44 43 2017-10-28 15:01:29 nb nob nob nob nob Norsk (Bokmål) 2017-10-28 15:01:29 Norwegian Bokmål
45 44 2017-10-28 15:01:29 no nor nor nor nor Norsk 2017-10-28 15:01:29 Norwegian
46 45 2017-10-28 15:01:29 lo lao lao lao lao ພາສາລາວ 2017-10-28 15:01:29 Lao
47 46 2017-10-28 15:01:29 se sme sme sme sme Sámegiella 2017-10-28 15:01:29 Northern Sami
48 47 2017-10-28 15:01:29 sg sag sag sag sag Sängö 2017-10-28 15:01:29 Sango
49 48 2017-10-28 15:01:29 tr tur tur tur tur Türkçe 2017-10-28 15:01:29 Turkish
50 49 2017-10-28 15:01:29 ts tso tso tso tso Xitsonga 2017-10-28 15:01:29 Tsonga
51 50 2017-10-28 15:01:29 tt tat tat tat tat Татарча 2017-10-28 15:01:29 Tatar
52 51 2017-10-28 15:01:29 tw twi twi twi twi Twi 2017-10-28 15:01:29 Twi
53 52 2017-10-28 15:01:29 ty tah tah tah tah Reo Mā’ohi 2017-10-28 15:01:29 Tahitian
54 53 2017-10-28 15:01:29 ug uig uig uig uig ئۇيغۇرچه 2017-10-28 15:01:29 Uyghur
55 54 2017-10-28 15:01:29 uk ukr ukr ukr ukr Українська 2017-10-28 15:01:29 Ukrainian
56 55 2017-10-28 15:01:29 ur urd urd urd urd اردو 2017-10-28 15:01:29 Urdu
57 56 2017-10-28 15:01:29 uz uzb uzb uzb uzb O‘zbek 2017-10-28 15:01:29 Uzbek
58 57 2017-10-28 15:01:29 ve ven ven ven ven Tshivenḓa 2017-10-28 15:01:29 Venda
59 58 2017-10-28 15:01:29 vi vie vie vie vie Tiếng Việt 2017-10-28 15:01:29 Vietnamese
60 59 2017-10-28 15:01:29 vo vol vol vol vol Volapük 2017-10-28 15:01:29 Volapük
61 60 2017-10-28 15:01:29 wa wln wln wln wln Walon 2017-10-28 15:01:29 Walloon
62 61 2017-10-28 15:01:29 cy cym wel cym cym Cymraeg 2017-10-28 15:01:29 Welsh
63 62 2017-10-28 15:01:29 wo wol wol wol wol Wolof 2017-10-28 15:01:29 Wolof
64 63 2017-10-28 15:01:29 fy fry fry fry fry Frysk 2017-10-28 15:01:29 Western Frisian
65 64 2017-10-28 15:01:29 xh xho xho xho xho isiXhosa 2017-10-28 15:01:29 Xhosa
66 65 2017-10-28 15:01:29 yi yid yid yid yid ייִדיש 2017-10-28 15:01:29 Yiddish
67 66 2017-10-28 15:01:29 yo yor yor yor yor Yorùbá 2017-10-28 15:01:29 Yoruba
68 67 2017-10-28 15:01:29 to ton ton ton ton faka Tonga 2017-10-28 15:01:29 Tonga
69 68 2017-10-28 15:01:29 sm smo smo smo smo Gagana Sāmoa 2017-10-28 15:01:29 Samoan
70 69 2017-10-28 15:01:29 tn tsn tsn tsn tsn Setswana 2017-10-28 15:01:29 Tswana
71 70 2017-10-28 15:01:29 tk tuk tuk tuk tuk Türkmençe 2017-10-28 15:01:29 Turkmen
72 71 2017-10-28 15:01:29 sr srp srp srp srp Српски 2017-10-28 15:01:29 Serbian
73 72 2017-10-28 15:01:29 gd gla gla gla gla Gàidhlig 2017-10-28 15:01:29 Gaelic
74 73 2017-10-28 15:01:29 sn sna sna sna sna ChiShona 2017-10-28 15:01:29 Shona
75 74 2017-10-28 15:01:29 si sin sin sin sin සිංහල 2017-10-28 15:01:29 Sinhala
76 75 2017-10-28 15:01:29 sk slk slo slk slk Slovenčina 2017-10-28 15:01:29 Slovak
77 76 2017-10-28 15:01:29 sl slv slv slv slv Slovenščina 2017-10-28 15:01:29 Slovene
78 77 2017-10-28 15:01:29 so som som som som Soomaaliga 2017-10-28 15:01:29 Somali
79 78 2017-10-28 15:01:29 st sot sot sot sot Sesotho 2017-10-28 15:01:29 Southern Sotho
80 79 2017-10-28 15:01:29 es spa spa spa spa Español 2017-10-28 15:01:29 Spanish
81 80 2017-10-28 15:01:29 su sun sun sun sun Basa Sunda 2017-10-28 15:01:29 Sundanese
82 81 2017-10-28 15:01:29 sw swa swa swa swa Kiswahili 2017-10-28 15:01:29 Swahili
83 82 2017-10-28 15:01:29 ss ssw ssw ssw ssw SiSwati 2017-10-28 15:01:29 Swati
84 83 2017-10-28 15:01:29 sv swe swe swe swe Svenska 2017-10-28 15:01:29 Swedish
85 84 2017-10-28 15:01:29 ta tam tam tam tam தமிழ் 2017-10-28 15:01:29 Tamil
86 85 2017-10-28 15:01:29 te tel tel tel tel తెలుగు 2017-10-28 15:01:29 Telugu
87 86 2017-10-28 15:01:29 tg tgk tgk tgk tgk Тоҷикӣ 2017-10-28 15:01:29 Tajik
88 87 2017-10-28 15:01:29 th tha tha tha tha ภาษาไทย 2017-10-28 15:01:29 Thai
89 88 2017-10-28 15:01:29 ti tir tir tir tir ትግርኛ 2017-10-28 15:01:29 Tigrinya
90 89 2017-10-28 15:01:29 bo bod tib bod bod བོད་ཡིག 2017-10-28 15:01:29 Tibetan Standard
91 90 2017-10-28 15:01:29 tl tgl tgl tgl tgl Tagalog 2017-10-28 15:01:29 Tagalog
92 91 2017-10-28 15:01:29 ln lin lin lin lin Lingála 2017-10-28 15:01:29 Lingala
93 92 2017-10-28 15:01:29 li lim lim lim lim Limburgs 2017-10-28 15:01:29 Limburgish
94 93 2017-10-28 15:01:29 lg lug lug lug lug Luganda 2017-10-28 15:01:29 Ganda
95 94 2017-10-28 15:01:29 my mya bur mya mya မြန်မာဘာသာ 2017-10-28 15:01:29 Burmese
96 95 2017-10-28 15:01:29 ca cat cat cat cat Català 2017-10-28 15:01:29 Catalan
97 96 2017-10-28 15:01:29 ch cha cha cha cha Chamoru 2017-10-28 15:01:29 Chamorro
98 97 2017-10-28 15:01:29 ce che che che che Нохчийн 2017-10-28 15:01:29 Chechen
99 98 2017-10-28 15:01:29 ny nya nya nya nya Chichewa 2017-10-28 15:01:29 Chichewa
100 99 2017-10-28 15:01:29 zh zho chi zho zho 中文 2017-10-28 15:01:29 Chinese
101 100 2017-10-28 15:01:29 cv chv chv chv chv Чӑвашла 2017-10-28 15:01:29 Chuvash
102 101 2017-10-28 15:01:29 kw cor cor cor cor Kernewek 2017-10-28 15:01:29 Cornish
103 102 2017-10-28 15:01:29 co cos cos cos cos Corsu 2017-10-28 15:01:29 Corsican
104 103 2017-10-28 15:01:29 cr cre cre cre cre ᓀᐦᐃᔭᐍᐏᐣ 2017-10-28 15:01:29 Cree
105 104 2017-10-28 15:01:29 hr hrv hrv hrv hrv Hrvatski 2017-10-28 15:01:29 Croatian
106 105 2017-10-28 15:01:29 cs ces cze ces ces Čeština 2017-10-28 15:01:29 Czech
107 106 2017-10-28 15:01:29 da dan dan dan dan Dansk 2017-10-28 15:01:29 Danish
108 107 2017-10-28 15:01:29 dv div div div div Divehi 2017-10-28 15:01:29 Divehi
109 108 2017-10-28 15:01:29 nl nld dut nld nld Nederlands 2017-10-28 15:01:29 Dutch
110 109 2017-10-28 15:01:29 dz dzo dzo dzo dzo རྫོང་ཁ 2017-10-28 15:01:29 Dzongkha
111 110 2017-10-28 15:01:29 en eng eng eng eng English 2017-10-28 15:01:29 English
112 111 2017-10-28 15:01:29 eo epo epo epo epo Esperanto 2017-10-28 15:01:29 Esperanto
113 112 2017-10-28 15:01:29 et est est est est Eesti 2017-10-28 15:01:29 Estonian
114 113 2017-10-28 15:01:29 bg bul bul bul bul Български 2017-10-28 15:01:29 Bulgarian
115 114 2017-10-28 15:01:29 ee ewe ewe ewe ewe Eʋegbe 2017-10-28 15:01:29 Ewe
116 115 2017-10-28 15:01:29 br bre bre bre bre Brezhoneg 2017-10-28 15:01:29 Breton
117 116 2017-10-28 15:01:29 bi bis bis bis bis Bislama 2017-10-28 15:01:29 Bislama
118 117 2017-10-28 15:01:29 aa aar aar aar aar Afaraf 2017-10-28 15:01:29 Afar
119 118 2017-10-28 15:01:29 af afr afr afr afr Afrikaans 2017-10-28 15:01:29 Afrikaans
120 119 2017-10-28 15:01:29 ak aka aka aka aka Akan 2017-10-28 15:01:29 Akan
121 120 2017-10-28 15:01:29 sq sqi alb sqi sqi Shqip 2017-10-28 15:01:29 Albanian
122 121 2017-10-28 15:01:29 am amh amh amh amh አማርኛ 2017-10-28 15:01:29 Amharic
123 122 2017-10-28 15:01:29 ar ara ara ara ara العربية 2017-10-28 15:01:29 Arabic
124 123 2017-10-28 15:01:29 an arg arg arg arg Aragonés 2017-10-28 15:01:29 Aragonese
125 124 2017-10-28 15:01:29 hy hye arm hye hye Հայերեն 2017-10-28 15:01:29 Armenian
126 125 2017-10-28 15:01:29 as asm asm asm asm অসমীয়া 2017-10-28 15:01:29 Assamese
127 126 2017-10-28 15:01:29 av ava ava ava ava Авар 2017-10-28 15:01:29 Avaric
128 127 2017-10-28 15:01:29 ae ave ave ave ave avesta 2017-10-28 15:01:29 Avestan
129 128 2017-10-28 15:01:29 ay aym aym aym aym Aymar 2017-10-28 15:01:29 Aymara
130 129 2017-10-28 15:01:29 az aze aze aze aze Azərbaycanca 2017-10-28 15:01:29 Azerbaijani
131 130 2017-10-28 15:01:29 bm bam bam bam bam Bamanankan 2017-10-28 15:01:29 Bambara
132 131 2017-10-28 15:01:29 ba bak bak bak bak Башҡортса 2017-10-28 15:01:29 Bashkir
133 132 2017-10-28 15:01:29 eu eus baq eus eus Euskara 2017-10-28 15:01:29 Basque
134 133 2017-10-28 15:01:29 be bel bel bel bel Беларуская 2017-10-28 15:01:29 Belarusian
135 134 2017-10-28 15:01:29 bn ben ben ben ben বাংলা 2017-10-28 15:01:29 Bengali
136 135 2017-10-28 15:01:29 bh bih bih bih bih भोजपुरी 2017-10-28 15:01:29 Bihari
137 136 2017-10-28 15:01:29 bs bos bos bos bos Bosanski 2017-10-28 15:01:29 Bosnian
138 137 2017-10-28 15:01:29 fo fao fao fao fao Føroyskt 2017-10-28 15:01:29 Faroese
139 138 2017-10-28 15:01:29 fj fij fij fij fij Na Vosa Vaka-Viti 2017-10-28 15:01:29 Fijian
140 139 2017-10-28 15:01:29 fi fin fin fin fin Suomi 2017-10-28 15:01:29 Finnish
141 140 2017-10-28 15:01:29 iu iku iku iku iku ᐃᓄᒃᑎᑐᑦ 2017-10-28 15:01:29 Inuktitut
142 141 2017-10-28 15:01:29 ja jpn jpn jpn jpn 日本語 2017-10-28 15:01:29 Japanese
143 142 2017-10-28 15:01:29 jv jav jav jav jav Basa Jawa 2017-10-28 15:01:29 Javanese
144 143 2017-10-28 15:01:29 kl kal kal kal kal Kalaallisut 2017-10-28 15:01:29 Kalaallisut
145 144 2017-10-28 15:01:29 kn kan kan kan kan ಕನ್ನಡ 2017-10-28 15:01:29 Kannada
146 145 2017-10-28 15:01:29 kr kau kau kau kau Kanuri 2017-10-28 15:01:29 Kanuri
147 146 2017-10-28 15:01:29 ks kas kas kas kas كشميري 2017-10-28 15:01:29 Kashmiri
148 147 2017-10-28 15:01:29 kk kaz kaz kaz kaz Қазақша 2017-10-28 15:01:29 Kazakh
149 148 2017-10-28 15:01:29 km khm khm khm khm ភាសាខ្មែរ 2017-10-28 15:01:29 Khmer
150 149 2017-10-28 15:01:29 ki kik kik kik kik Gĩkũyũ 2017-10-28 15:01:29 Kikuyu
151 150 2017-10-28 15:01:29 rw kin kin kin kin Kinyarwanda 2017-10-28 15:01:29 Kinyarwanda
152 151 2017-10-28 15:01:29 ky kir kir kir kir Кыргызча 2017-10-28 15:01:29 Kyrgyz
153 152 2017-10-28 15:01:29 kv kom kom kom kom Коми 2017-10-28 15:01:29 Komi
154 153 2017-10-28 15:01:29 kg kon kon kon kon Kongo 2017-10-28 15:01:29 Kongo
155 154 2017-10-28 15:01:29 ko kor kor kor kor 한국어 2017-10-28 15:01:29 Korean
156 155 2017-10-28 15:01:29 ku kur kur kur kur Kurdî 2017-10-28 15:01:29 Kurdish
157 156 2017-10-28 15:01:29 kj kua kua kua kua Kuanyama 2017-10-28 15:01:29 Kwanyama
158 157 2017-10-28 15:01:29 la lat lat lat lat Latina 2017-10-28 15:01:29 Latin
159 158 2017-10-28 15:01:29 lb ltz ltz ltz ltz Lëtzebuergesch 2017-10-28 15:01:29 Luxembourgish
160 159 2017-10-28 15:01:29 it ita ita ita ita Italiano 2017-10-28 15:01:29 Italian
161 160 2017-10-28 15:01:29 is isl ice isl isl Íslenska 2017-10-28 15:01:29 Icelandic
162 161 2017-10-28 15:01:29 io ido ido ido ido Ido 2017-10-28 15:01:29 Ido
163 162 2017-10-28 15:01:29 ik ipk ipk ipk ipk Iñupiak 2017-10-28 15:01:29 Inupiaq
164 163 2017-10-28 15:01:29 fr fra fre fra fra Français 2017-10-28 15:01:29 French
165 164 2017-10-28 15:01:29 ff ful ful ful ful Fulfulde 2017-10-28 15:01:29 Fula
166 165 2017-10-28 15:01:29 gl glg glg glg glg Galego 2017-10-28 15:01:29 Galician
167 166 2017-10-28 15:01:29 ka kat geo kat kat ქართული 2017-10-28 15:01:29 Georgian
168 167 2017-10-28 15:01:29 de deu ger deu deu Deutsch 2017-10-28 15:01:29 German
169 168 2017-10-28 15:01:29 el ell gre ell ell Ελληνικά 2017-10-28 15:01:29 Greek
170 169 2017-10-28 15:01:29 gn grn grn grn grn Avañe'ẽ 2017-10-28 15:01:29 Guaraní
171 170 2017-10-28 15:01:29 gu guj guj guj guj ગુજરાતી 2017-10-28 15:01:29 Gujarati
172 171 2017-10-28 15:01:29 ht hat hat hat hat Kreyòl Ayisyen 2017-10-28 15:01:29 Haitian
173 172 2017-10-28 15:01:29 za zha zha zha zha Cuengh 2017-10-28 15:01:29 Zhuang
174 173 2017-10-28 15:01:29 ha hau hau hau hau هَوُسَ 2017-10-28 15:01:29 Hausa
175 174 2017-10-28 15:01:29 hz her her her her Otjiherero 2017-10-28 15:01:29 Herero
176 175 2017-10-28 15:01:29 hi hin hin hin hin हिन्दी 2017-10-28 15:01:29 Hindi
177 176 2017-10-28 15:01:29 ho hmo hmo hmo hmo Hiri Motu 2017-10-28 15:01:29 Hiri Motu
178 177 2017-10-28 15:01:29 hu hun hun hun hun Magyar 2017-10-28 15:01:29 Hungarian
179 178 2017-10-28 15:01:29 ia ina ina ina ina Interlingua 2017-10-28 15:01:29 Interlingua
180 179 2017-10-28 15:01:29 id ind ind ind ind Bahasa Indonesia 2017-10-28 15:01:29 Indonesian
181 180 2017-10-28 15:01:29 ie ile ile ile ile Interlingue 2017-10-28 15:01:29 Interlingue
182 181 2017-10-28 15:01:29 ga gle gle gle gle Gaeilge 2017-10-28 15:01:29 Irish
183 182 2017-10-28 15:01:29 ig ibo ibo ibo ibo Igbo 2017-10-28 15:01:29 Igbo
184 183 2017-10-28 15:01:29 he heb heb heb heb עברית 2017-10-28 15:01:29 Hebrew
185 184 2017-10-28 15:01:29 zu zul zul zul zul isiZulu 2017-10-28 15:01:29 Zulu

6
data/licenses.csv Normal file
View file

@ -0,0 +1,6 @@
Id,"CreatedDateUtc","DescriptionUrl","ModifiedDateUtc","Name",PermissiveAdaptation,PermissiveCommercial
1,"2017-10-31 20:20:38","https://creativecommons.org/licenses/by-nc-nd/4.0/","2017-10-31 20:41:29","CC BY-NC-ND 4.0",0,0
2,"2017-11-01 16:24:29","https://opensource.org/licenses/MIT","2017-11-01 16:24:29","The MIT License",1,1
3,"2017-11-01 16:30:49",NULL,"2017-11-04 08:11:39","Restricted (General)",0,0
4,"2017-11-01 16:48:35","https://www.gnu.org/licenses/gpl-3.0.en.html","2017-11-01 16:48:35","GPLv3",1,1
5,"2017-11-04 07:58:49","https://en.wikipedia.org/wiki/All_rights_reserved","2017-11-04 09:47:19","All Rights Reserved (Default)",0,0
1 Id CreatedDateUtc DescriptionUrl ModifiedDateUtc Name PermissiveAdaptation PermissiveCommercial
2 1 2017-10-31 20:20:38 https://creativecommons.org/licenses/by-nc-nd/4.0/ 2017-10-31 20:41:29 CC BY-NC-ND 4.0 0 0
3 2 2017-11-01 16:24:29 https://opensource.org/licenses/MIT 2017-11-01 16:24:29 The MIT License 1 1
4 3 2017-11-01 16:30:49 NULL 2017-11-04 08:11:39 Restricted (General) 0 0
5 4 2017-11-01 16:48:35 https://www.gnu.org/licenses/gpl-3.0.en.html 2017-11-01 16:48:35 GPLv3 1 1
6 5 2017-11-04 07:58:49 https://en.wikipedia.org/wiki/All_rights_reserved 2017-11-04 09:47:19 All Rights Reserved (Default) 0 0

9
data/maintainers.csv Normal file
View file

@ -0,0 +1,9 @@
Id,"CreatedDateUtc","HomeUrl","ModifiedDateUtc","Name","TwitterHandle","EmailAddress"
2,"2017-10-31 20:24:52",NULL,"2017-10-31 20:24:52","AppliliZ",NULL,NULL
3,"2017-11-01 16:22:01","https://bradconte.com/","2017-11-01 16:22:14","Brad Conte","bradconte",NULL
4,"2017-11-01 16:34:29","https://forum.xda-developers.com/member.php?u=4877037","2017-11-01 16:34:29","BSDgeek_Jake",NULL,NULL
5,"2017-11-01 16:39:03","https://www.michaeltrimm.com/","2017-11-01 16:39:03","Michael Trimm",NULL,NULL
6,"2017-11-01 16:52:02","https://eyeo.com/","2017-11-01 16:52:02","eyeo GmbH","eyeo","info@eyeo.com"
7,"2017-11-01 16:56:52","https://easylist.to/","2017-11-01 16:58:39","The EasyList Authors",NULL,NULL
8,"2017-11-01 17:03:11","https://github.com/mayve","2017-11-01 17:03:11","mayve",NULL,NULL
9,"2017-11-03 21:17:10","http://joxeankoret.com/","2017-11-03 21:17:29","Joxean Koret",NULL,"admin@oxeankoret.com"
1 Id CreatedDateUtc HomeUrl ModifiedDateUtc Name TwitterHandle EmailAddress
2 2 2017-10-31 20:24:52 NULL 2017-10-31 20:24:52 AppliliZ NULL NULL
3 3 2017-11-01 16:22:01 https://bradconte.com/ 2017-11-01 16:22:14 Brad Conte bradconte NULL
4 4 2017-11-01 16:34:29 https://forum.xda-developers.com/member.php?u=4877037 2017-11-01 16:34:29 BSDgeek_Jake NULL NULL
5 5 2017-11-01 16:39:03 https://www.michaeltrimm.com/ 2017-11-01 16:39:03 Michael Trimm NULL NULL
6 6 2017-11-01 16:52:02 https://eyeo.com/ 2017-11-01 16:52:02 eyeo GmbH eyeo info@eyeo.com
7 7 2017-11-01 16:56:52 https://easylist.to/ 2017-11-01 16:58:39 The EasyList Authors NULL NULL
8 8 2017-11-01 17:03:11 https://github.com/mayve 2017-11-01 17:03:11 mayve NULL NULL
9 9 2017-11-03 21:17:10 http://joxeankoret.com/ 2017-11-03 21:17:29 Joxean Koret NULL admin@oxeankoret.com

1
data/merges.csv Normal file
View file

@ -0,0 +1 @@
MergeFilterListId,UpstreamFilterListId,"CreatedDateUtc","ModifiedDateUtc"
1 MergeFilterListId UpstreamFilterListId CreatedDateUtc ModifiedDateUtc

1
data/rules.csv Normal file
View file

@ -0,0 +1 @@
Id,"CreatedDateUtc","ModifiedDateUtc","Raw"
1 Id CreatedDateUtc ModifiedDateUtc Raw

3
data/software.csv Normal file
View file

@ -0,0 +1,3 @@
Id,"CreatedDateUtc","DownloadUrl","HomeUrl","ModifiedDateUtc","Name"
1,"2017-11-04 09:45:17","https://github.com/gorhill/uBlock#installation","https://github.com/gorhill/uBlock","2017-11-04 09:45:47","uBlock Origin"
2,"2017-11-04 09:46:34","https://adblockplus.org/","https://adblockplus.org/","2017-11-04 09:46:34","Adblock Plus"
1 Id CreatedDateUtc DownloadUrl HomeUrl ModifiedDateUtc Name
2 1 2017-11-04 09:45:17 https://github.com/gorhill/uBlock#installation https://github.com/gorhill/uBlock 2017-11-04 09:45:47 uBlock Origin
3 2 2017-11-04 09:46:34 https://adblockplus.org/ https://adblockplus.org/ 2017-11-04 09:46:34 Adblock Plus

View file

@ -0,0 +1 @@
SoftwareId,SyntaxId,"CreatedDateUtc","ModifiedDateUtc"
1 SoftwareId SyntaxId CreatedDateUtc ModifiedDateUtc

5
data/syntaxes.csv Normal file
View file

@ -0,0 +1,5 @@
Id,"CreatedDateUtc","DefinitionUrl","ModifiedDateUtc","Name"
1,"2017-11-04 09:42:30","https://en.wikipedia.org/wiki/Hosts_(file)","2017-11-04 09:42:30","Hosts"
2,"2017-11-04 09:42:42",NULL,"2017-11-04 09:42:42","Domains"
3,"2017-11-04 09:43:01","https://adblockplus.org/filters","2017-11-04 09:43:33","Adblock Plus"
4,"2017-11-04 09:43:07","https://github.com/gorhill/uBlock/wiki/Static-filter-syntax","2017-11-04 09:43:39","uBlock Origin"
1 Id CreatedDateUtc DefinitionUrl ModifiedDateUtc Name
2 1 2017-11-04 09:42:30 https://en.wikipedia.org/wiki/Hosts_(file) 2017-11-04 09:42:30 Hosts
3 2 2017-11-04 09:42:42 NULL 2017-11-04 09:42:42 Domains
4 3 2017-11-04 09:43:01 https://adblockplus.org/filters 2017-11-04 09:43:33 Adblock Plus
5 4 2017-11-04 09:43:07 https://github.com/gorhill/uBlock/wiki/Static-filter-syntax 2017-11-04 09:43:39 uBlock Origin

View file

@ -1,8 +1,5 @@
using FilterLists.Data;
using FilterLists.Data.Json;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
namespace FilterLists.Api
{
@ -10,14 +7,7 @@ public class Program
{
public static void Main(string[] args)
{
JsonSchemaGenerator.WriteSchemaToFile();
JsonSampleGenerator.WriteSampleToFile();
var host = BuildWebHost(args);
using (var scope = host.Services.CreateScope())
{
DbInitializer.Initialize(scope.ServiceProvider.GetRequiredService<FilterListsDbContext>());
}
host.Run();
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args)

View file

@ -1,40 +0,0 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using FilterLists.Data.Entities;
using Microsoft.EntityFrameworkCore;
using Newtonsoft.Json;
namespace FilterLists.Data
{
public static class DbInitializer
{
[Conditional("DEBUG")]
public static void Initialize(FilterListsDbContext filterListsDbContext)
{
filterListsDbContext.Database.Migrate();
InitializeLanguages(filterListsDbContext);
InitializeFilterLists(filterListsDbContext);
}
private static void InitializeLanguages(FilterListsDbContext filterListsDbContext)
{
if (filterListsDbContext.Languages.Any()) return;
filterListsDbContext.AddRange(JsonConvert.DeserializeObject<List<Language>>(
File.ReadAllText(Path.GetFullPath(Path.Combine(AppContext.BaseDirectory + @"\",
@"..\..\..\..\..\data\Languages.json")))));
filterListsDbContext.SaveChanges();
}
private static void InitializeFilterLists(FilterListsDbContext filterListsDbContext)
{
if (filterListsDbContext.FilterLists.Any()) return;
filterListsDbContext.AddRange(JsonConvert.DeserializeObject<List<FilterList>>(
File.ReadAllText(Path.GetFullPath(Path.Combine(AppContext.BaseDirectory + @"\",
@"..\..\..\..\..\data\ListsSeed.json")))));
filterListsDbContext.SaveChanges();
}
}
}

View file

@ -1,55 +0,0 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using FilterLists.Data.Entities;
using Newtonsoft.Json.Linq;
namespace FilterLists.Data.Json
{
public static class JsonSampleGenerator
{
private static JObject DataSample => (JObject) JToken.FromObject(new Maintainer
{
EmailAddress = "john.smith@protonmail.com",
HomeUrl = "https://johnsmith.com",
TwitterHandle = "@johnsmith",
Name = "John Smith",
FilterLists = new List<FilterList>
{
new FilterList
{
Description = "A sample list to filter out advertisements.",
DescriptionSourceUrl = "https://mysample.list/advertisements",
DonateUrl = "https://mysample.list/donate/",
EmailAddress = "contact@mysample.list",
ForumUrl = "https://mysample.list/forum/",
HomeUrl = "https://mysample.list/",
IssuesUrl = "https://github.com/johnsmith/mysamplelist/issues",
Name = "My Sample Advertisement Filter List",
ViewUrl = "https://mysample.list/list.txt"
},
new FilterList
{
Description = "A sample list to filter out malware.",
DescriptionSourceUrl = "https://mysample.list/malware",
DonateUrl = "https://mysample.list/donate/",
EmailAddress = "contact@mysample.list",
ForumUrl = "https://mysample.list/forum/",
HomeUrl = "https://mysample.list/",
IssuesUrl = "https://github.com/johnsmith/mysamplelist/issues",
Name = "My Sample Malware Filter List",
ViewUrl = "https://mysample.list/list.txt"
}
}
});
[Conditional("DEBUG")]
public static void WriteSampleToFile()
{
File.WriteAllText(
Path.GetFullPath(Path.Combine(AppContext.BaseDirectory + @"\", @"..\..\..\..\..\data\")) +
"DataSample.json", DataSample.ToString());
}
}
}

View file

@ -1,19 +0,0 @@
using System;
using System.Diagnostics;
using System.IO;
using FilterLists.Data.Entities;
using Newtonsoft.Json.Schema.Generation;
namespace FilterLists.Data.Json
{
public static class JsonSchemaGenerator
{
[Conditional("DEBUG")]
public static void WriteSchemaToFile()
{
File.WriteAllText(
Path.GetFullPath(Path.Combine(AppContext.BaseDirectory + @"\", @"..\..\..\..\..\data\")) +
"DataSchema.json", new JSchemaGenerator().Generate(typeof(Maintainer)).ToString());
}
}
}