LOG_TeamViewer_Connect_Chinese_Keyboard_Layout
Description
Detects a suspicious TeamViewer log entry stating that the remote systems had a Chinese keyboard layout
Query · yara
strings:
/* Source has Chinese simplified keyboard layout */
$x1 = "Changing keyboard layout to: 0804" ascii
$x2 = "Changing keyboard layout to: 042a"
/* Avoiding Chinese to Chinese support cases */
$fp1 = "Changing keyboard layout to: 08040804" ascii
$fp2 = "Changing keyboard layout to: 042a042a" ascii
condition:
( #x1 + #x2 ) > ( #fp1 + #fp2 )