JohnGalt14

YARA Rule Riddle

Sep 27th, 2025
4,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YARA 0.74 KB | None | 0 0
  1. rule MAL_Cisco_LINE_VIPER_Shellcode_Initial_Execution {
  2.    meta:
  3.       author = "NCSC"
  4.       description = "Detects LINE VIPER Cisco ASA malware code as part of shellcode initial execution."
  5.       date = "2025-09-25"
  6.       reference = "https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/RayInitiator-LINE-VIPER/ncsc-mar-rayinitiator-line-viper.pdf"
  7.       score = 85
  8.    strings:
  9.       $xc1 = {
  10.          48 8D B7 80 00 00 00 BA 00 20 00 00 [19] 48 C7 C6 00
  11.          90 00 00 BA 07 00 00 00
  12.       }
  13.       $x1 = /SI23gAAAALoAIAAA[A-Za-z0-9+\/]{26}jHxgCQAAC6BwAAA/
  14.       $x2 = /iNt4AAAAC6ACAAA[A-Za-z0-9+\/]{26}Ix8YAkAAAugcAAA/
  15.       $x3 = /IjbeAAAAAugAgAA[A-Za-z0-9+\/]{26}SMfGAJAAALoHAAAA/
  16.    condition:
  17.       1 of them
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment