home *** CD-ROM | disk | FTP | other *** search
/ ftp.f-secure.com / 2014.06.ftp.f-secure.com.tar / ftp.f-secure.com / support / hotfix / fsis / IS-SpamControl.fsfix / iufssc / rules / 20_ratware.cf < prev    next >
Text File  |  2006-11-29  |  17KB  |  313 lines

  1. # SpamAssassin rules file: known spam mailers
  2. #
  3. # Sometimes these leave 'sent by mailername' fingerprints in the
  4. # headers, which provide a nice way for us to catch them.
  5. #
  6. # Please don't modify this file as your changes will be overwritten with
  7. # the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
  8. # See 'perldoc Mail::SpamAssassin::Conf' for details.
  9. #
  10. # <@LICENSE>
  11. # Copyright 2004 Apache Software Foundation
  12. # Licensed under the Apache License, Version 2.0 (the "License");
  13. # you may not use this file except in compliance with the License.
  14. # You may obtain a copy of the License at
  15. #     http://www.apache.org/licenses/LICENSE-2.0
  16. # Unless required by applicable law or agreed to in writing, software
  17. # distributed under the License is distributed on an "AS IS" BASIS,
  18. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  19. # See the License for the specific language governing permissions and
  20. # limitations under the License.
  21. # </@LICENSE>
  22. #
  23. ###########################################################################
  24.  
  25. header RATWARE_EGROUPS        X-Mailer =~ /eGroups Message Poster/
  26. describe RATWARE_EGROUPS    Bulk email fingerprint (eGroups) found
  27. header RATWARE_HASH_2           X-Mailer =~ /^[A-Za-z0-9_]{16,}$/
  28. describe RATWARE_HASH_2        Bulk email fingerprint (hash 2) found
  29. header RATWARE_HASH_2_V2        X-Mailer =~ /^[A-Za-z0-9_]{14,}$/
  30. describe RATWARE_HASH_2_V2    Bulk email fingerprint (hash 2 v2) found
  31. header RATWARE_JPFREE        X-Mailer =~ /jpfree Group Mail Express/
  32. describe RATWARE_JPFREE        Bulk email fingerprint (jpfree) found
  33.  
  34. # Note that the tests which look at the "ALL" pseudoheader are slower than
  35. # the specific header.
  36. # 100% overlap with X-Stormpost-To: header, but seems wise to leave it in
  37. uri RATWARE_STORM_URI        m{^http://\S{1,100}/sp/t\.pl\?id=\d+:\d+}i
  38. describe RATWARE_STORM_URI    Bulk email fingerprint (StormPost) found
  39. header RATWARE_OE_MALFORMED    X-Mailer =~ /^Microsoft Outlook Express \d(?:\.\d+){3} \w+$/
  40. describe RATWARE_OE_MALFORMED    X-Mailer has malformed Outlook Express version
  41. header RATWARE_RCVD_LC_ESMTP    Received =~ /^from (?:(?:unknown|\d+\.\d+\.\d+\.\d+) \(\S+\)|\[\d+\.\d+\.\d+\.\d+\]) by \S+ with (?:esmtp|local|smtp); /m
  42. describe RATWARE_RCVD_LC_ESMTP    Bulk email fingerprint ('esmtp' Received) found
  43. header RATWARE_MOZ_MALFORMED    User-Agent =~ /Mozilla\/5\.0\d\d/
  44. describe RATWARE_MOZ_MALFORMED    Bulk email fingerprint (Mozilla malformed) found
  45.  
  46. header RATWARE_MPOP_WEBMAIL    X-Mailer =~ /mPOP Web-Mail/i
  47. describe RATWARE_MPOP_WEBMAIL    Bulk email fingerprint (mPOP Web-Mail)
  48.  
  49. ###########################################################################
  50. # Now, detect forgeries of real MUAs
  51. #
  52. # NOTE: these rules should specify version numbers!
  53.  
  54. # Dec 17 2002 jm: this means "message ID is either too old or has been
  55. # rewritten by a gateway".  Made into an eval test since meta tests cannot
  56. # (yet) chain from other meta tests.
  57. header __UNUSABLE_MSGID        eval:check_messageid_not_usable()
  58.  
  59. # AOL
  60. header __AOL_MUA        X-Mailer =~ /\bAOL\b/
  61.  
  62. # Internet Mail Service
  63. header __IMS_MUA        X-Mailer =~ /Internet Mail Service/
  64. header __IMS_MSGID        MESSAGEID =~ /^<[A-F\d]{36,40}\@\S+>$/m
  65. meta FORGED_MUA_IMS        (__IMS_MUA && !__IMS_MSGID && !__UNUSABLE_MSGID)
  66. describe FORGED_MUA_IMS        Forged mail pretending to be from IMS
  67.  
  68. # Outlook mailers often use this Message-ID
  69. header __OUTLOOK_DOLLARS_MSGID    MESSAGEID =~ /^<[0-9a-f]{12}\$[0-9a-f]{8}\$[0-9a-f]{8}\@\S+>$/m
  70.  
  71. # Outlook Express 4, 5, and 6
  72. header __OE_MUA            X-Mailer =~ /\bOutlook Express [456]\./
  73. header __OE_MSGID_1        MESSAGEID =~ /^<[A-Za-z0-9-]{7}[A-Za-z0-9]{20}\@hotmail\.com>$/m
  74. header __OE_MSGID_2        MESSAGEID =~ /^<(?:[0-9a-f]{8}|[0-9a-f]{12})\$[0-9a-f]{8}\$[0-9a-f]{8}\@\S+>$/m
  75. header __OE_MSGID_3        MESSAGEID =~ /^<BAY\d+-DAV\d+[A-Z0-9]{25}\@phx\.gbl>$/m
  76. meta __FORGED_OE        (__OE_MUA && !__OE_MSGID_1 && !__OE_MSGID_2 && !__OE_MSGID_3 && !__UNUSABLE_MSGID)
  77.  
  78. # Outlook versions that usually use "dollar signs"
  79. header __OUTLOOK_DOLLARS_MUA    X-Mailer =~ /^Microsoft Outlook(?: 8| CWS, Build 9|, Build 10)\./
  80. header __OUTLOOK_DOLLARS_OTHER    MESSAGEID =~ /^<\!\~\!/m
  81. meta __FORGED_OUTLOOK_DOLLARS    (__OUTLOOK_DOLLARS_MUA && !__OUTLOOK_DOLLARS_MSGID && !__OUTLOOK_DOLLARS_OTHER && !__IMS_MSGID && !__UNUSABLE_MSGID)
  82.  
  83. # use new meta rules to implement FORGED_MUA_OUTLOOK rule from 2.60
  84. meta FORGED_MUA_OUTLOOK        (__FORGED_OE || __FORGED_OUTLOOK_DOLLARS)
  85. describe FORGED_MUA_OUTLOOK    Forged mail pretending to be from MS Outlook
  86.  
  87. # Outlook IMO (Internet Mail Only)
  88. header __OIMO_MUA        X-Mailer =~ /Outlook IMO/
  89. header __OIMO_MSGID        MESSAGEID =~ /^<[A-P]{26}A[ABC]\.[-\w.]+\@\S+>$/m
  90. meta FORGED_MUA_OIMO        (__OIMO_MUA && !__OIMO_MSGID && !__OUTLOOK_DOLLARS_MSGID && !__UNUSABLE_MSGID)
  91. describe FORGED_MUA_OIMO    Forged mail pretending to be from MS Outlook IMO
  92.  
  93. # QUALCOMM Eudora
  94. # Note: uses X_LOOP and X_MAILING_LIST as subrules
  95. # X-Mailer: QUALCOMM Windows Eudora Version 5.0   (and 5.1)
  96. # X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22
  97. # updated to fix bugs 2047, 2598, 2654
  98. # NOTE: this is the *only* spammish Eudora MUA pattern that wasn't
  99. # ignored using __OLD_EUDORA1 and __OLD_EUDORA2 under previous rules.
  100. header __EUDORA_MUA             X-Mailer =~ /^QUALCOMM Windows Eudora (?:Pro |Light )?Version [3456]\./
  101. header __EUDORA_MSGID        MESSAGEID =~ /^<(?:\d\d?\.){3,5}\d{14}\.[a-f0-9]{8}\@\S+(?:\sport\s\d+)?>$/m
  102. header __HAS_X_LOOP        exists:X-Loop
  103. header __HAS_X_MAILING_LIST    exists:X-Mailing-List
  104. meta FORGED_MUA_EUDORA          (__EUDORA_MUA && !__EUDORA_MSGID && !__UNUSABLE_MSGID && !__HAS_X_LOOP && !__HAS_X_MAILING_LIST)
  105. describe FORGED_MUA_EUDORA    Forged mail pretending to be from Eudora
  106.   
  107. # Mar 26 2003 jm: AOL MUAs add a Received line, and do not use "real names" in
  108. # From or To headers, as far as I can see, quinlan: also see bug 1426
  109. header __AOL_FROM        From:addr =~ /\@(?:aol|cs)\.com$/i
  110. meta FORGED_MUA_AOL_FROM    (__AOL_MUA && !__AOL_FROM)
  111. describe FORGED_MUA_AOL_FROM    Forged mail pretending to be from AOL (by From)
  112.  
  113. # From private mail with developers.  Some top tips here!
  114. header __THEBAT_MUA        X-Mailer =~ /The Bat!/
  115. header __THEBAT_MUA_V1        X-Mailer =~ /^The Bat! \(v1\./
  116. #header __THEBAT_MUA_V2        X-Mailer =~ /^The Bat! \(v2\./
  117. #header __THEBAT_MUA_V3        X-Mailer =~ /^The Bat! \(v3\./
  118. header __CTYPE_CHARSET_QUOTED    Content-Type =~ /charset=\"/i
  119. header __CTYPE_HAS_BOUNDARY    Content-Type =~ /boundary/i
  120. header __BAT_BOUNDARY        Content-Type =~ /boundary=\"?-{10}/
  121. header __MAILMAN_21             X-Mailman-Version =~ /\d/
  122. meta FORGED_MUA_THEBAT_CS    (__THEBAT_MUA && __CTYPE_CHARSET_QUOTED)
  123. meta FORGED_MUA_THEBAT_BOUN     (__THEBAT_MUA_V1 && __CTYPE_HAS_BOUNDARY && !__BAT_BOUNDARY && !__MAILMAN_21)
  124. describe FORGED_MUA_THEBAT_CS    Mail pretending to be from The Bat! (charset)
  125. describe FORGED_MUA_THEBAT_BOUN Mail pretending to be from The Bat! (boundary)
  126.  
  127. # bug 4649: bulk mail sent via Yahoo! often looks forged, even when it is not
  128. header __YAHOO_BULK        Received =~ /from \[\S+\] by \S+\.(?:groups|scd|dcn)\.yahoo\.com with NNFMP/
  129.  
  130. meta FORGED_OUTLOOK_HTML    (!__YAHOO_BULK && __ANY_OUTLOOK_MUA && MIME_HTML_ONLY)
  131. describe FORGED_OUTLOOK_HTML    Outlook can't send HTML message only
  132.  
  133. # bug 2525: FORGED_IMS_HTML fp'ing because new IMS *DOES* use text/html
  134. # ctype.  ARGH.  This was noted in build 5.5.2656.59, so permit builds
  135. # after that to get away with it.
  136. header __IMS_HTML_BUILDS    X-Mailer =~ /^Internet Mail Service .(?:[6789]\.|5\.[6789]|5\.5\.(?:[3456789]|2[789]|26[6789]|265[6789]))/
  137. header __IMS_HTML_RCVD        Received =~ /\bby \S+ with Internet Mail Service .(?:[6789]\.|5\.[6789]|5\.5\.(?:[3456789]|2[789]|26[6789]|265[6789]))/
  138. meta FORGED_IMS_HTML        (!__YAHOO_BULK && __IMS_MUA && MIME_HTML_ONLY && !(__IMS_HTML_BUILDS && __IMS_HTML_RCVD))
  139. describe FORGED_IMS_HTML    IMS can't send HTML message only
  140.  
  141. meta FORGED_THEBAT_HTML        (__THEBAT_MUA_V1 && MIME_HTML_ONLY)
  142. describe FORGED_THEBAT_HTML    The Bat! can't send HTML message only
  143.  
  144. # bug 2513
  145. header __REPTO_OVERQUOTE    Reply-To =~ /"[\w. -]+"\s*\</
  146. meta REPTO_OVERQUOTE_THEBAT    __REPTO_OVERQUOTE && __THEBAT_MUA
  147. describe REPTO_OVERQUOTE_THEBAT    The Bat! doesn't do quoting like this
  148.  
  149. # bug 2513
  150. header __REPTO_QUOTE        Reply-To =~ /".*"\s*\</
  151. meta REPTO_QUOTE_AOL        __REPTO_QUOTE && __AOL_MUA
  152. describe REPTO_QUOTE_AOL    AOL doesn't do quoting like this
  153.  
  154. meta REPTO_QUOTE_IMS        __REPTO_QUOTE && __IMS_MUA
  155. describe REPTO_QUOTE_IMS    IMS doesn't do quoting like this
  156.  
  157. meta REPTO_QUOTE_MSN        __REPTO_QUOTE && (__FROM_MSN_COM || __AT_MSN_MSGID)
  158. describe REPTO_QUOTE_MSN    MSN doesn't do quoting like this
  159.  
  160. meta REPTO_QUOTE_QUALCOMM    __REPTO_QUOTE && __ANY_QUALCOMM_MUA
  161. describe REPTO_QUOTE_QUALCOMM    Qualcomm/Eudora doesn't do quoting like this
  162.  
  163. meta REPTO_QUOTE_YAHOO        __REPTO_QUOTE && (__FROM_YAHOO_COM || __AT_YAHOO_MSGID)
  164. describe REPTO_QUOTE_YAHOO    Yahoo! doesn't do quoting like this
  165.  
  166. # bug 1561
  167. # stronger version of USER_AGENT_APPLEMAIL
  168. # Apple Mail doesn't send text/html at all (unless it's an attachment)
  169. # It'll send text/plain, or multipart/alternative with text/plain and
  170. # text/enriched parts (boundary of "Apple-Mail-\d--\d+").  It can, however,
  171. # send a multipart/mixed with a single text/html attachment, so don't use
  172. # MIME_HTML_ONLY.
  173. # perhaps limit CTYPE to "text/plain", "multipart/alternative" with
  174. # "text/plain" and "text/enhanced", or "multipart/mixed"?
  175. # bug 4223: expand for new Apple Mail version format
  176. header __X_MAILER_APPLEMAIL    X-Mailer =~ /^Apple Mail \(\d\.\d+(?:\.\d+)?\)$/
  177. header __MSGID_APPLEMAIL        Message-Id =~ /^<[0-9A-F]{8}-(?:[0-9A-F]{4}-){3}[0-9A-F]{12}\@\S+>$/
  178. header __MIME_VERSION_APPLEMAIL    Mime-Version =~ /^1\.0 \(Apple Message framework v\d+(?:\.\d+)?\)$/
  179. meta __USER_AGENT_APPLEMAIL    !__CTYPE_HTML && __X_MAILER_APPLEMAIL && (__MSGID_APPLEMAIL || __MIME_VERSION_APPLEMAIL)
  180.  
  181. # 2003-02-23: quinlan
  182. # some useful meta rule sub-elements
  183. body __MIME_HTML        eval:check_for_mime_html()
  184. header __CTYPE_HTML        Content-Type =~ /text\/html/i
  185. header __ANY_AOL_MUA        X-Mailer =~ /^AOL\b/
  186. header __ANY_IMS_MUA        X-Mailer =~ /^Internet Mail Service\b/
  187. header __ANY_OUTLOOK_MUA    X-Mailer =~ /^Microsoft Outlook\b/
  188. body __TAG_EXISTS_BODY        eval:html_tag_exists('body')
  189. body __TAG_EXISTS_HEAD        eval:html_tag_exists('head')
  190. body __TAG_EXISTS_HTML        eval:html_tag_exists('html')
  191. body __TAG_EXISTS_META        eval:html_tag_exists('meta')
  192.  
  193. header __ANY_QUALCOMM_MUA       X-Mailer =~ /\bQUALCOMM\b/
  194. meta FORGED_QUALCOMM_TAGS    (__ANY_QUALCOMM_MUA && __MIME_HTML && !__TAG_EXISTS_HTML)
  195. describe FORGED_QUALCOMM_TAGS    QUALCOMM mailers can't send HTML in this format
  196.  
  197. meta FORGED_AOL_TAGS        (__ANY_AOL_MUA && __MIME_HTML && !__TAG_EXISTS_HTML)
  198. describe FORGED_AOL_TAGS    AOL mailers can't send HTML in this format
  199.  
  200. meta FORGED_IMS_TAGS        (!__YAHOO_BULK && __ANY_IMS_MUA && __MIME_HTML && !(__TAG_EXISTS_HTML && __TAG_EXISTS_HEAD && __TAG_EXISTS_META && __TAG_EXISTS_BODY))
  201. describe FORGED_IMS_TAGS    IMS mailers can't send HTML in this format
  202.  
  203. meta FORGED_OUTLOOK_TAGS    (!__YAHOO_BULK && __ANY_OUTLOOK_MUA && __MIME_HTML && !(__TAG_EXISTS_HTML && __TAG_EXISTS_HEAD && __TAG_EXISTS_META && __TAG_EXISTS_BODY))
  204. describe FORGED_OUTLOOK_TAGS    Outlook can't send HTML in this format
  205.  
  206. # Send-Safe ratware (idea from Alan Curry)
  207. # random alphanumerics, separated into groups of 16 by dashes (the first
  208. # and last group may be shorter), with a lowercase "l" and a number
  209. # appended. The final number is the length of the whole string not
  210. # including the dashes or the "l<number>".  Why? I have no idea.  It's
  211. # not a tracking code - the spamware does not save it locally.
  212. #
  213. # jm: it's specifically to throw off MIME base64 encoding, to evade AOL's
  214. # filters.
  215. #
  216. # http://groups.google.com/groups?selm=atp1ip0n22%40enews3.newsguy.com
  217. rawbody RATWARE_HASH_DASH    /[a-z\d]-[a-z\d]{16}-[a-z\d]{1,16}(?-i:l)\d/i
  218. describe RATWARE_HASH_DASH    Contains a hashbuster in Send-Safe format
  219.  
  220. # spammer tool, sometimes has "netIP with HTTP;" in Received: header
  221. header RATWARE_NETIP        Content-Type =~ /boundary="--ALT--[A-Z]{4}\d/
  222. describe RATWARE_NETIP        Bulk email fingerprint (netIP) found
  223.  
  224. # this is really badly faked.  Also the spammer who uses "25250101"
  225. # for the build is a total hippie.
  226. header RATWARE_GECKO_BUILD    User-Agent =~ /Gecko\/(?!200\d\d\d\d\d)\d/
  227. describe RATWARE_GECKO_BUILD    Bulk email fingerprint (Gecko faked) found
  228.  
  229. ########################################################################
  230. # Most ratware uses message templates I would guess.
  231. # Here's two popular ones...
  232. header HDR_ORDER_MTSRIX        ALL =~ /\nMessage-ID: <\S+@\S+>\nTo: [^\n]+ <\S+>\nSubject: [^\n]+\nReferences: <\S+@\S+>\nIn-Reply-To: <\S+@\S+>\nX-Mailer: /
  233. describe HDR_ORDER_MTSRIX    Headers are in order found in spam (MTSRIX)
  234. header HDR_ORDER_TRIMRS        ALL =~ /\nTo: [^\n]+\nReferences: <\S+@\S+>\nIn-Reply-To: <\S+@\S+>\nMessage-ID: <\S+@\S+>\nReply-To: [^\n]+\nSender: /
  235. describe HDR_ORDER_TRIMRS    Headers are in order found in spam (TRIMRS)
  236.  
  237. ########################################################################
  238. # This ratware always uses a +0000 TZ in the Date header, and has a multiplicity
  239. # of From: header formats. ("From" header samples from Steven Champeon
  240. # <schampeo.hesketh.com> via the spamtools.lists.abuse.net and SPAM-L lists).
  241. #
  242. # "First Last" <firstlast_[a-z][a-z]@somedomain>        1
  243. # "First Last" <firstlast[a-z][a-z]@somedomain>         1
  244. # "First Last" <first.last[a-z][a-z]@somedomain>        1
  245. # "First Last" <first_last[a-z][a-z]@somedomain>        1
  246. # "First Last" <first_last_[a-z][a-z]@somedomain>       1
  247. # "First Last" <flast_[a-z][a-z]@somedomain>            2
  248. # "First Last" <flast[a-z][a-z]@somedomain>             2
  249. # "First Last" <f.last_[a-z][a-z]@somedomain>           2
  250. # "First Last" <f.last[a-z][a-z]@somedomain>            2
  251. # "First Last" <f_last[a-z][a-z]@somedomain>            2
  252. # "First Last" <last[a-z][a-z]@somedomain>              3
  253. # "First M. Last" <firstlast_[a-z][a-z]@somedomain>     4
  254. # "First M. Last" <firstlast[a-z][a-z]@somedomain>      4
  255. # "First M. Last" <first.m.last[a-z][a-z]@somedomain>   5
  256. # "First M. Last" <firstmlast[a-z][a-z]@somedomain>     5
  257. # "First M. Last" <firstmlast_[a-z][a-z]@somedomain>    5
  258. # "First M. Last" <fmlast_[a-z][a-z]@somedomain>        6
  259. # "First M. Last" <mlast[a-z][a-z]@somedomain>          7
  260. # "First M. Last" <m.last[a-z][a-z]@somedomain>         7
  261. header __0_TZ_1      From =~ /^\"(\w)(\w+) (\w+)\" <\1\2[\._]?\3_?[a-z][a-z]\@/i
  262. header __0_TZ_2      From =~ /^\"(\w)(\w+) (\w+)\" <\1[\._]?\3_?[a-z][a-z]\@/i
  263. header __0_TZ_3      From =~ /^\"(\w)(\w+) (\w+)\" <\3_?[a-z][a-z]\@/i
  264. header __0_TZ_4      From =~ /^\"(\w)(\w+) (\w)\. (\w+)\" <\1\2[\._]?\4_?[a-z][a-z]\@/i
  265. header __0_TZ_5      From =~ /^\"(\w)(\w+) (\w)\. (\w+)\" <\1\2[\._]?\3[\._]?\4_?[a-z][a-z]\@/i
  266. header __0_TZ_6      From =~ /^\"(\w)(\w+) (\w)\. (\w+)\" <\1\3\4_?[a-z][a-z]\@/i
  267. header __0_TZ_7      From =~ /^\"(\w)(\w+) (\w)\. (\w+)\" <\3[\._]?\4_?[a-z][a-z]\@/i
  268.  
  269. header __RATWARE_0_TZ_DATE    Date =~ / \+0000$/
  270.  
  271. meta RATWARE_ZERO_TZ           (__RATWARE_0_TZ_DATE && __CTYPE_HTML && (__0_TZ_1 || __0_TZ_2 || __0_TZ_3 || __0_TZ_4 || __0_TZ_5 || __0_TZ_6 || __0_TZ_7))
  272. describe RATWARE_ZERO_TZ    Bulk email fingerprint (+0000) found
  273.  
  274. header RCVD_BONUS_SPC_DATE    Received =~ /with SMTP;  \d\d \S\S\S /
  275. describe RCVD_BONUS_SPC_DATE    Bulk email fingerprint (bonus space) found
  276.  
  277. header X_MESSAGE_INFO        exists:X-Message-Info
  278. describe X_MESSAGE_INFO        Bulk email fingerprint (X-Message-Info) found
  279.  
  280. # case-sensitive rule
  281. # only significant rules with no FPs, hit recently, on 2+ corpuses
  282. header HEADER_SPAM        ALL =~ /^(Alternate-Recipient|Antivirus|Approved|Delivery-Notification|Disclose-Recipients|Error-path|Language|Location|Mime-Subversion|Newsletter-ID|PID|Rot|UID|X-BounceTrace|X-CS-IP|X-Company-Address|X-Company-City|X-Company-Country|X-Company-State|X-Company-Zip|X-E(?:[Mm]ail)?|X-Encoding|X-Originating-Company|X-RMD-Text|X-SG4|X-SP-Track-ID|X-Webmail-Time|X-bounce-to):/m
  283. describe HEADER_SPAM        Bulk email fingerprint (header-based) found
  284.  
  285. header RATWARE_RCVD_PF        Received =~ / \(Postfix\) with ESMTP id [^;]+\; \S+ \d+ \S+ \d+ \d+:\d+:\d+ \S+$/s
  286. describe RATWARE_RCVD_PF    Bulk email fingerprint (Received PF) found
  287.  
  288. header RATWARE_RCVD_AT        Received =~ / by \S+\@\S+ with Microsoft SMTPSVC/
  289. describe RATWARE_RCVD_AT    Bulk email fingerprint (Received @) found
  290.  
  291. meta RATWARE_OUTLOOK_NONAME    __MSGID_DOLLARS_OK && !__HAS_X_MAILER
  292. describe RATWARE_OUTLOOK_NONAME    Bulk email fingerprint (Outlook no name) found
  293.  
  294. header MSGID_RATWARE1        Message-Id =~ /<[A-Z]+\$[^\$]+\$.+@/
  295. describe MSGID_RATWARE1        Bulk email fingerprint found
  296.  
  297. header RATWARE_BOUND_PIECE    Content-Type =~ /boundary=\"?--Piece/
  298. describe RATWARE_BOUND_PIECE    Bulk email fingerprint (piece boundary) found
  299.  
  300. header __RATWARE_NAME_ID    eval:check_ratware_name_id()
  301. meta RATWARE_NAME_ID        __RATWARE_0_TZ_DATE && __RATWARE_NAME_ID
  302. describe RATWARE_NAME_ID    Bulk email fingerprint (msgid from) found
  303.  
  304. header __MIMEOLE_MS        X-MIMEOLE =~ /^Produced By Microsoft MimeOLE/
  305. meta RATWARE_MS_HASH         __MSGID_DOLLARS_OK && !__MIMEOLE_MS
  306. describe RATWARE_MS_HASH    Bulk email fingerprint (msgid ms hash) found
  307.  
  308. header RATWARE_EFROM        eval:check_ratware_envelope_from()
  309. describe RATWARE_EFROM        Bulk email fingerprint (envfrom) found
  310.