phishdestroy/destroylist
收藏资源简介:
--- tags: - phishing - cybersecurity - threat-intelligence - crypto-scam - blocklist - malware - fraud-detection - domain-security license: mit language: - en task_categories: - text-classification size_categories: - 100K<n<1M pretty_name: "PhishDestroy - Real-time Phishing & Crypto Scam Domain Blocklist" --- # PhishDestroy Blocklist Dataset Real-time feed of phishing, crypto drainer, and scam domains detected by [PhishDestroy](https://phishdestroy.io). **Updated hourly from GitHub.** ## Statistics | Metric | Count | |--------|-------| | Total Domains | 127,075 | | DNS Active | 68,717 | | Content Active | 69,575 | | Dead Domains | 58,075 | | Community Blocklist | 872,287 | | Added Today | 4 | | Added This Week | 4 | *Last updated: 2026-04-11 19:30 UTC* ## Files | File | Description | |------|-------------| | `list.json` | Full domain list (JSON array) | | `domains.txt` | Plain text, one domain per line | | `urls.txt` | Full URLs with protocol | | `domains.csv` | ML-ready CSV with metadata | | `dns/active_domains.json` | DNS-verified active domains | | `dns/content_active.json` | Domains with verified malicious content | | `dns/dead_domains.json` | Inactive/dead domains | | `dns/today_added.json` | New domains added today | | `dns/week_added.json` | New domains this week | | `community/blocklist.json` | Community-submitted blocklist | | `community/live_blocklist.json` | Community verified live | ## Usage ### Python (datasets) ```python from datasets import load_dataset # Load full dataset ds = load_dataset("phishdestroy/destroylist") # Or load specific file import json from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="phishdestroy/destroylist", filename="list.json", repo_type="dataset" ) with open(path) as f: domains = json.load(f) ``` ### Pandas ```python import pandas as pd from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="phishdestroy/destroylist", filename="domains.csv", repo_type="dataset" ) df = pd.read_csv(path) print(df.head()) ``` ### curl ```bash # Download domains list curl -L https://huggingface.co/datasets/phishdestroy/destroylist/resolve/main/domains.txt # Download as JSON curl -L https://huggingface.co/datasets/phishdestroy/destroylist/resolve/main/list.json ``` ## Links - Website: [phishdestroy.io](https://phishdestroy.io) - API: [api.destroy.tools](https://api.destroy.tools) - GitHub: [github.com/phishdestroy/destroylist](https://github.com/phishdestroy/destroylist) - AlienVault OTX: [OTX Pulse](https://otx.alienvault.com/pulse/69c081afa2bd54a9599b7c07) ## License MIT License - Free for commercial and non-commercial use. ## Citation ```bibtex @dataset{phishdestroy_blocklist, title = {PhishDestroy Blocklist}, author = {PhishDestroy Team}, year = {2024}, url = {https://huggingface.co/datasets/phishdestroy/destroylist} } ```
tags: - 钓鱼(phishing) - 网络安全(cybersecurity) - 威胁情报(threat-intelligence) - 加密货币诈骗(crypto-scam) - 域名黑名单(blocklist) - 恶意软件(malware) - 欺诈检测(fraud-detection) - 域名安全(domain-security) license: MIT许可证 language: - 英语 task_categories: - 文本分类(text-classification) size_categories: - 100,000 < 样本数量 < 1,000,000 pretty_name: "PhishDestroy——实时钓鱼与加密诈骗域名黑名单" # PhishDestroy黑名单数据集 本数据集收录由[PhishDestroy](https://phishdestroy.io)检测到的钓鱼、加密货币窃取器及诈骗域名的实时数据源。**每小时从GitHub同步更新一次。** ## 统计数据 | 指标 | 数量 | |--------|-------| | 总域名数 | 127,075 | | DNS活跃域名 | 68,717 | | 内容活跃域名 | 69,575 | | 失效域名 | 58,075 | | 社区黑名单 | 872,287 | | 今日新增 | 4 | | 本周新增 | 4 | *最后更新时间:2026-04-11 19:30 UTC* ## 数据集文件 | 文件名 | 描述 | |------|-------------| | `list.json` | 完整域名列表(JSON数组格式) | | `domains.txt` | 纯文本格式,每行一个域名 | | `urls.txt` | 包含协议的完整URL列表 | | `domains.csv` | 适配机器学习的元数据CSV文件 | | `dns/active_domains.json` | 经DNS验证的活跃域名 | | `dns/content_active.json` | 经验证含恶意内容的域名 | | `dns/dead_domains.json` | 失效/非活跃域名 | | `dns/today_added.json` | 今日新增域名 | | `dns/week_added.json` | 本周新增域名 | | `community/blocklist.json` | 社区提交的黑名单 | | `community/live_blocklist.json` | 经社区验证的活跃黑名单 | ## 使用方法 ### Python(datasets库) python from datasets import load_dataset # 加载完整数据集 ds = load_dataset("phishdestroy/destroylist") # 或加载指定文件 import json from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="phishdestroy/destroylist", filename="list.json", repo_type="dataset" ) with open(path) as f: domains = json.load(f) ### Pandas python import pandas as pd from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="phishdestroy/destroylist", filename="domains.csv", repo_type="dataset" ) df = pd.read_csv(path) print(df.head()) ### curl bash # 下载域名列表 curl -L https://huggingface.co/datasets/phishdestroy/destroylist/resolve/main/domains.txt # 以JSON格式下载 curl -L https://huggingface.co/datasets/phishdestroy/destroylist/resolve/main/list.json ## 相关链接 - 官方网站:[phishdestroy.io](https://phishdestroy.io) - API接口:[api.destroy.tools](https://api.destroy.tools) - GitHub仓库:[github.com/phishdestroy/destroylist](https://github.com/phishdestroy/destroylist) - AlienVault OTX:[OTX脉冲页面](https://otx.alienvault.com/pulse/69c081afa2bd54a9599b7c07) ## 许可证 MIT许可证——可免费用于商业及非商业用途。 ## 引用格式 bibtex @dataset{phishdestroy_blocklist, title = {PhishDestroy黑名单数据集}, author = {PhishDestroy团队}, year = {2024}, url = {https://huggingface.co/datasets/phishdestroy/destroylist} }





