VirusTotal / yara

The pattern matching swiss knife
https://virustotal.github.io/yara/
BSD 3-Clause "New" or "Revised" License
8.08k stars 1.43k forks source link

another example: I want to scan Chinese character by regex yara rules as beloww: #1953

Open dh-orko opened 1 year ago

dh-orko commented 1 year ago
          another example: I want to scan Chinese character by regex yara rules as beloww:

rule AsianCharacter : general { strings: $chinese = /[\u4e00-\u9fa5]/ condition: $chinese } Problem: it cannot match Chinese character.

Originally posted by @hanggao481 in https://github.com/VirusTotal/yara/issues/1952#issuecomment-1683251906