Mitigating DMARC damage to third party mail: Difference between revisions

From ASRG
Jump to navigationJump to search
No edit summary
Line 150: Line 150:


* Requires that mail providers trust the lists.
* Requires that mail providers trust the lists.
* Scales poorly since each list needs to get a key from each sending domain.
* Scales poorly since each list operator needs to get a key from each sending domain.


=== Relay through author domain server ===
=== Relay through author domain server ===

Revision as of 03:45, 10 June 2014

DMARC is an anti-phishing technology. It has recently been repurposed by large mail providers for public webmail domains.

DMARC alignment requires that the From: line address in a mail message match either a DKIM signature d= domain, or an SPF-validated bounce address domain. Depending on a domain's published policy, unaligned mail may be quarantined, i.e., relegated to the spam folder, or rejected with a 5xx SMTP code by recipient systems. Mailing lists and other software that send legitimate but unaligned mail often find that mail rejected. Problems include recipients not getting the mail they want, and in some cases the normal list bounce processing removes the recipients from lists.

Sending side workarounds

Techniques which can be applied unilaterally by any operator that sends unaligned mail.

Exclude domains that require alignment

Check the DMARC policy on incoming mail, and refuse mail from domains with quarantine or reject polcies.

Effects:

  • Users in affected domains have to get new addresses or leave.
  • Operation otherwise unaffected.

Turn off all message modifications

Disable subject tags, message footers, and anything else that might break a DKIM signature.

Effects:

  • Still doesn't work for domains that validate mail with SPF.
  • Doesn't help mail-an-article.
  • Users can't recognize list mail by subject tags or anything else.
  • Sorting by subject tags doesn't work.
  • Often impractical when footers have required content.

Replace address with a generic one

Lists rewrite the From: line to use the list's address rather than the author's, either for all mail, or for mail from domains with policies.

Address may be moved into address comment, e.g.

From: foo list for Marissa mmeyer-at-yahoo.com <foo@list.org>

Author's address may be placed in a Reply-To: header, give or take the usual issues about lists and Reply-To.

Effects:

  • Reply to author unavailable without Reply-To:
  • Address book techniques based on recognizing From: address don't work or work differently.
  • Author not visible in MUA message list.
  • Mail sorting rules don't work the same.
  • Encourages phishing by training users that address in the comment is equivalent to address.

Add fixed string such as .invalid to addresses

Add a suffix to From: line addresses with policies.

From: Marissa <mmeyer@yahoo.com.invalid>

Effects:

  • Sorting rules might break depending on match details
  • Reply to author requires usenet-style demunging
  • Encourages phishing by training users that munged address is equivalent to address.

Rewrite addresses to forwarding addresses

Rewrite addresses to a valid address that will forward to the original address, either using a wildcard domain suffix or a pseudorandom address.

From: Marissa <mmeyer@yahoo.com.dmarc.email>

From: Marissa <hash123@fwd.list.org>

Effects:

  • List function largely unchanged
  • Requires list operator to run a forwarder, which must be managed to avoid relaying spam
  • Forwarding addresses likely to end up in user address books, which means either the forwarder has to work forever or the address book entries will suffer bit rot. (Too bad no SMTP software supports 251 and 551 reply codes any more.)
  • Encourages phishing by training users that modified address is equivalent to address.

Message wrapping

Wrap each message in an outer message, similar to single-message digests.

Effects:

  • Looks like digests to users unless they have (so far nonexistent) MUA unwrapping extensions
  • May encourage phishing depending on how MUA displays message.

Mandatory digests

Require all users, or users on recipient systems that enforce DMARC, to get list mail as digests

Effects:

  • All the usual reasons people don't like digests, mail is delayed until the digest is sent, replying to individual messages is harder, replying to the whole digest loses threads, etc.

Ignore DMARC bounces

Check for DMARC codes in bounce messages and disregard them for list management.

Effects:

  • Recipients lose mail
  • Bounces may affect list reputation and delivery

Cooperative solutions

Techniques which need mutual cooperation in order to work.

Shared whitelist

Third party maintains DMARC-bypass whitelist of IPs and/or DKIM signatures of senders who send legitimate unaligned mail. Could probably seed with forwarders known to large mail systems. Probably wouldn't be absolute whitelist, just skip DMARC alignment check.

Effects:

  • Someone has to do it.
  • Eligible senders need to find out about it and apply, if not seeded.
  • Could allow more spam or phish depending on how careful forwarders are.

Per sender whitelist

Senders publish list of DKIM signatures allowed to send for them, like in RFC 6541.

Effects:

  • A lot of work for each sender
  • Large senders unlikely to know all of the third parties that their users use.

Original-Authentication-Results header

Remailers include a header reporting on the authentication of the incoming message. AR header is intended to detect spear-phishing if the remailer doesn't.

Effects:

  • Since the header is trivially forgable, recipients have to know who to trust. (See whitelist above.) O
  • List operation unaffected if it works.
  • Doesn't help mail-an-article.

Forwarding token

Original sender includes a header with a signed token that identifies the relay.

Effects:

  • A variety of bad things if the relay is compromised or tries to play games.
  • Senders will probably only want to include them in mail to trustworthy relays. (See whitelist above.)

Authorization approaches

Ways to get a DKIM author signature on the message.

Signing key delegation

The author domain delegates a signing key to the list.

Effects:

  • Requires that mail providers trust the lists.
  • Scales poorly since each list operator needs to get a key from each sending domain.

Relay through author domain server

Use API or SUBMIT to send mail through the author domain's server

Effects:

  • Requires a a password at each author domain
  • Web submission (mail and article) could use API and oauth to avoid disclosing password
  • Otherwise need users' password for SUBMIT
  • Author domain likely to force its own bounce address
  • Author domain likely to limit volume

Relay one copy through author domain server

As above, but send one copy back to the list to get signed, then remail that

Effects:

  • As above but avoids bounce address and volume

Third Party Authorization

TPA is intended to replace RFC 6541 third-party signatures

TPA-Label allows either a community or domain managed list of informally federated domains using a single and small DNS transaction. Deployment only requires the trusted domain and the system evaluating DMARC alignment to implement TPA-Label processing. Few third-party services will be required to make any changes.

TPA-Label helps direct which message element provides alignment and can signal when a domain is excluded from the federation for policy reasons. The exclusion circumvents repeated processing during review of DMARC feedback against outbound logs which is only done by the Trusted Domain (email provider).

See the Internet Draft.