-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordlist.py
More file actions
27 lines (27 loc) · 1.19 KB
/
wordlist.py
File metadata and controls
27 lines (27 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
WORD_LIST = {
"common": [
"merge", "clone", "stack", "debug", "fetch", "shell", "index",
"query", "array", "tuple", "token", "cache", "build", "parse",
"print", "trace", "state", "logic", "model", "route", "event",
"async", "class", "proxy", "login", "admin", "cloud", "patch",
"graph", "scope", "pixel", "frame", "queue", "input", "bytes",
"ascii", "codec", "loops", "timer", "const"
],
"uncommon": [
"pipel", "alloc", "regex", "commit", "branch", "script",
"module", "socket", "buffer", "import", "export", "render",
"widget", "layout", "syntax", "binary", "decimal", "object",
"signal", "lambda", "method", "trigger", "helper", "source",
"config", "hooks", "forks", "tests", "suite", "parser",
"engine", "driver", "client", "server", "inode"
],
"rare": [
"opcode", "kernel", "daemon", "linker", "runtime", "package",
"process", "compile", "sandbox", "refactor", "overload",
"endpoint", "iterator", "recursion", "database", "protocol",
"terminal", "function", "variable", "emulator"
],
"legendary": [
"mutex", "bitop", "quine", "thunk", "monad"
]
}