├── LICENSE ├── README.md ├── converter └── domains.csv /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Feiox 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 互联网垃圾网站列表 2 | 3 | 【注意】该项目正在进行重构,希望您能关注哦 4 | 5 | 这里是收集到的互联网上的垃圾网站列表。 6 | 7 | ## 使用 8 | 您可以这样利用它: 9 | 10 | * Chrome 已失效 11 | * [Personal Blocklist](https://chrome.google.com/webstore/detail/nolijncfnkgaikbjbdaogikpmpbdcdef) 12 | 您可以将它导入到 Personal Blocklist 插件中,用以屏蔽 Google 搜索结果中的垃圾网站。 13 | 14 | * Firefox 已失效 15 | * [Hide Unwanted Results of Google Search](https://addons.mozilla.org/en-US/firefox/addon/hide-unwanted-results-of-go/) 16 | Hide(block) site specific unwanted results of Google Search Also support Bing Search 17 | 18 | 另外: 19 | * [uBlock Origin](https://github.com/gorhill/uBlock) 20 | An efficient blocker for Chromium and Firefox. Fast and lean. 21 | 22 | P.S. 23 | *我并不是一个 FF 用户,希望您能帮助我找到更多更好用的这类插件* 24 | 25 | ## 对垃圾网站的定义 26 | 27 | * 堆砌关键词换取 SEO,本身并无任何价值 28 | * 虚假搜索引擎,例如 [问叔叔搜索](http://wenshushu.com/?q=abc)、[森林搜索](http://senlinso.com/k/abc)、[谷粉搜搜(假)](http://gfsoso.99lb.net/) 29 | * 恶意爬虫内容聚合站,例如 [人人 IT](http://fanli7.net/index.html) 30 | 31 | *P.S. 并不完整,欢迎补充* 32 | 33 | ## 贡献 34 | 35 | 我们欢迎任何人向我们贡献垃圾网站的域名列表。 36 | 请您通过 issue 提交您找到的垃圾站,或讨论某个站点是否应该被列为垃圾站。 37 | 我们也提供了一个简单的 Python 处理脚本,来处理格式、重复等问题。 38 | 39 | ## 授权协议 40 | 41 | The MIT License 42 | -------------------------------------------------------------------------------- /converter: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | with open('./domains.csv', 'r') as f: 4 | urls = {url for url in f.read().split('\n') if url} 5 | 6 | with open('./domains.csv', 'w') as f: 7 | f.write('\n'.join(sorted(list(urls)))) 8 | f.write('\n') 9 | --------------------------------------------------------------------------------