James_inthe_box

AES DDOS yara sig

Sep 28th, 2019
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. rule AESDDOS_bin
  2. {
  3. meta:
  4. description = "CloudDDOS"
  5. author = "James_inthe_box"
  6. reference = "3e617b40b552534565b24d43ace8c83711173256764f6c2b030ecfb582feeade"
  7. date = "2019/09"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "No such file or directory"
  12. $string2 = "No such device or address"
  13. $string3 = "@INFO:0.%d%%"
  14. $string4 = "Yow! Bad host lookup."
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 300KB
  18. }
  19.  
  20. rule AESDDOS_mem
  21. {
  22. meta:
  23. description = "CloudDDOS"
  24. author = "James_inthe_box"
  25. reference = "3e617b40b552534565b24d43ace8c83711173256764f6c2b030ecfb582feeade"
  26. date = "2019/09"
  27. maltype = "Bot"
  28.  
  29. strings:
  30. $string1 = "No such file or directory"
  31. $string2 = "No such device or address"
  32. $string3 = "@INFO:0.%d%%"
  33. $string4 = "Yow! Bad host lookup."
  34.  
  35. condition:
  36. all of ($string*) and filesize > 300KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment