Unveiling YARA: A Powerful Tool for Malware Analysis
Common Information
Type Value
UUID c6094f00-c075-43de-8423-302441ee9939
Fingerprint b0083b6daff3e79d
Analysis status DONE
Considered CTI value 0
Text language
Published Oct. 18, 2024, 6:42 a.m.
Added to db Oct. 18, 2024, 9:32 a.m.
Last updated Oct. 18, 2024, 9:33 a.m.
Headline Unveiling YARA: A Powerful Tool for Malware Analysis
Title Unveiling YARA: A Powerful Tool for Malware Analysis
Detected Hints/Tags/Attributes 17/2/1
RSS Feed
Details Id Enabled Feed title Url Added to db
Details 167 Cybersecurity on Medium https://medium.com/feed/tag/cybersecurity 2024-08-30 22:08
Attributes
Details Type #Events CTI Value
Details Yara rule 1
rule ExampleMalware {
	meta:
		author = "Your Name"
		description = "Detects Example Malware"
		date = "2024-10-04"
	strings:
		$a = "malicious_string"
		$b = { 6A 40 68 00 00 00 00 6A 00 50 6A 00 51 6A 01 5E }
	condition:
		$a or $b
}