2015-11-13 02:01:02 +03:00
|
|
|
#
|
|
|
|
# Resource checker
|
|
|
|
# -> Template keys from CMD exec
|
|
|
|
# [name] - nickname client
|
|
|
|
# [ip] - IP address client
|
|
|
|
# [userid] - userid client
|
|
|
|
# [steamid] - SteamID client
|
|
|
|
#
|
|
|
|
# [file_name] - the path of the file
|
|
|
|
# [file_hash] - hash the file of responce client
|
|
|
|
#
|
|
|
|
# -> Format
|
|
|
|
# path to file hash (exec cmd)
|
|
|
|
# "../opengl32.dll" c8005c526355d8015d462dc7f4ddb159 "kick [userid]"
|
|
|
|
#
|
2015-11-13 14:01:39 +03:00
|
|
|
# NOTE: Hash enough of 4 bytes (or 8 characters)
|
2015-11-13 02:01:02 +03:00
|
|
|
# -> Example
|
|
|
|
# full md5 hash: c8005c526355d8015d462dc7f4ddb159
|
|
|
|
# 4 bytes from the hash: c8005c52
|
|
|
|
#
|
|
|
|
# -> Flags
|
|
|
|
# BREAK - when detected, do not check a next files
|
|
|
|
# IGNORE - no detect on specifed hash values
|
|
|
|
#
|
|
|
|
# -> Template keys from Hash
|
|
|
|
# UNKNOWN - check for any other hash
|
|
|
|
# 00000000 - check for the missing file
|
|
|
|
# c8005c52 - check for matching on hash
|
|
|
|
#
|
|
|
|
|
|
|
|
"../opengl32.dll" UNKNOWN "kick [userid]"
|