Page MenuHomeWickedGov Phorge

tables.json
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

tables.json

[
{
"name": "spoofuser",
"columns": [
{
"name": "su_name",
"comment": "Equivalent to user_name, but not guaranteed to be in sync. Do a join against user_name to confirm that an account hasn't been renamed or deleted away. Unique record per username.",
"type": "binary",
"options": {
"notnull": true,
"length": 255
}
},
{
"name": "su_normalized",
"comment": "Normalized form of name for similarity-spoofing checks",
"type": "binary",
"options": {
"notnull": false,
"length": 255
}
},
{
"name": "su_legal",
"comment": "ok/not-ok according to the looks-like-a-valid-name check",
"type": "mwtinyint",
"options": {
"notnull": false,
"length": 1
}
},
{
"name": "su_error",
"comment": "error message that came out of the unicode check, if any",
"type": "text",
"options": {
"notnull": false,
"length": 65530
}
}
],
"indexes": [
{
"name": "su_normname_idx",
"comment": "For checking matching possible spoofs",
"columns": [
"su_normalized",
"su_name"
],
"unique": false
}
],
"pk": [
"su_name"
]
}
]

File Metadata

Mime Type
application/json
Expires
Fri, Jul 3, 21:52 (12 h, 48 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
01/3c/7388dea38f1c253374b12fac50e9
Default Alt Text
tables.json (1 KB)

Event Timeline