initial commit of ban detection project, still missing features and have to do more in regards to js

This commit is contained in:
jenz
2023-02-02 00:19:27 +01:00
parent 0b300cf5f4
commit b080d9cc6f
11 changed files with 870 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE ban_detector (
`fingerprint` varchar(512) NOT NULL,
`ip` varchar(64) NOT NULL,
`steamid` varchar(64),
`name` varchar(128),
`logged_message` boolean default false,
`created_on` datetime DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`fingerprint`, `ip`)
)