| license: mit | |
| language: | |
| - en | |
| tags: | |
| - cybersecurity | |
| - darkweb | |
| - slang | |
| - security | |
| - threat-intelligence | |
| size_categories: | |
| - n<1K | |
| # Dark Web Slang Dictionary | |
| A curated glossary of dark web slang terms, jargon, and code words commonly used in underground forums, marketplaces, and illicit communities. | |
| ## Purpose | |
| This dataset serves as a reference for: | |
| - **Security researchers** analyzing dark web communications | |
| - **Threat intelligence** teams monitoring underground forums | |
| - **OSINT investigators** tracking criminal terminology | |
| - **Language models** understanding dark web context | |
| ## Usage | |
| ```python | |
| import json | |
| with open("darkweb_slang.json", "r") as f: | |
| slang = json.load(f) | |
| # Look up a term | |
| term = "dox" | |
| definition = slang.get(term, "Not found") | |
| print(f"{term}: {definition}") | |
| ``` | |
| ## Related Resources | |
| - [malware-detector-rf](https://huggingface.co/dev9269/malware-detector-rf) — Malware classification model | |
| - [malware-detector-demo](https://huggingface.co/spaces/dev9269/malware-detector-demo) — Live malware detection demo | |