Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. ## TrustedAuthservIDs string
  2. ## default HOSTNAME
  3. ##
  4. ## Specifies one or more "authserv-id" values to trust as relaying true
  5. ## upstream DKIM and SPF results. The default is to use the name of
  6. ## the MTA processing the message. To specify a list, separate each entry
  7. ## with a comma. The key word "HOSTNAME" will be replaced by the name of
  8. ## the host running the filter as reported by the gethostname(3) function.
  9. #
  10. # TrustedAuthservIDs HOSTNAME
  11.  
  12. <-- 220 mx.example.com ESMTP Postfix (Debian/GNU)
  13. --> HELO evil.example.net
  14. <-- 250 mx.example.com
  15. --> MAIL FROM:<someone.from@evil.example.net>
  16. <-- 250 2.1.0 Ok
  17. --> RCPT TO:<user@example.com>
  18. <-- 250 2.1.5 Ok
  19. --> DATA
  20. <-- 354 End data with <CR><LF>.<CR><LF>
  21. --> Authentication-Results: mx.example.com; spf=pass
  22. --> Authentication-Results: mx.example.com;
  23. --> dkim=pass (1024-bit key; unprotected) header.d=example.com header.i=@example.com;
  24. --> From: <user@example.com>
  25. --> To: <user@example.com>
  26. --> Subject: forged Authentication-Results: mx.example.com;
  27.  
  28. Authentication-Results: mx.example.com; spf=pass (mailfrom) smtp.mailfrom=evil.example.net ...
  29. Authentication-Results: mx.example.com; dmarc=pass (p=reject dis=none) header.from=example.com
  30. Received: from smtp.evil.example.net (evil.example.net [198.51.100.80])
  31. by mx.example.com (Postfix) with SMTP id D4AC64048A
  32. for <user@example.com>;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement