dev9269/malware-detector-rf
Updated
last_updated timestamp[s] | source string | slang_map dict | neighborhoods list |
|---|---|---|---|
2026-07-03T00:00:00 | DarkNet Sentinel OSINT Intelligence | {
"mava": "MDMA",
"goli": "MDMA",
"chakri": "MDMA",
"pills": "MDMA",
"ecstasy": "MDMA",
"molly": "MDMA",
"candy": "MDMA",
"beans": "MDMA",
"xtc": "MDMA",
"buttons": "MDMA",
"safed": "Mephedrone",
"white rush": "Mephedrone",
"meow meow": "Mephedrone",
"mcat": "Mephedrone",
"drone": "Mephedr... | [
{
"name": "Adajan",
"aliases": [
"adajan",
"adajan gam",
"l.p. savani",
"honey park",
"adajan patia"
],
"latitude": 21.1974,
"longitude": 72.7953,
"risk_level": "High"
},
{
"name": "Athwa",
"aliases": [
"athwa",
"athwa gate",
"athwa... |
A curated glossary of dark web slang terms, jargon, and code words commonly used in underground forums, marketplaces, and illicit communities.
This dataset serves as a reference for:
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}")