mirror of
https://github.com/rehlds/rechecker.git
synced 2024-12-27 21:05:28 +03:00
50f6476db6
Fix flag with break
33 lines
944 B
INI
33 lines
944 B
INI
#
|
|
# 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
|
|
# [file_md5hash] - md5 hash (from big-endian to little endian) the file of responce client
|
|
#
|
|
# -> Format
|
|
# path to file hash (exec cmd)
|
|
# "../opengl32.dll" c8005c526355d8015d462dc7f4ddb159 "kick [userid]"
|
|
#
|
|
# NOTE: Hash enough of 4 bytes (or 8 characters)
|
|
# -> 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]"
|