Advertisement
Guest User

Untitled

a guest
Mar 5th, 2011
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. NMAP:
  2.  
  3. 25/tcp open smtp
  4. 587/tcp open submission
  5.  
  6. LOGS:
  7.  
  8. WITH SUBMISSION:
  9.  
  10. Mar 5 22:34:09 srf postfix/smtpd[8163]: connect from xxx.t-dialin.net[79.xxx.xxx.xx]
  11. Mar 5 22:34:09 srf postfix/smtpd[8163]: NOQUEUE: reject: CONNECT from xxx.t-dialin.net[79.xxx.xxx.xx]: 554 5.7.1 <xxx.t-dialin.net[79.xxx.xxx.xx]>: Client host rejected: Access denied; proto=SMTP
  12.  
  13. WITH PORT 25:
  14.  
  15. Mar 5 22:39:01 srf postfix/smtpd[12552]: connect from xxx.t-dialin.net[79.xxx.xxx.xx]
  16. Mar 5 22:39:01 srf postfix/smtpd[12552]: AA42C3322AD: client= xxx.t-dialin.net[79.xxx.xxx.xx], sasl_method=PLAIN, [email protected]
  17. Mar 5 22:39:01 srf postfix/cleanup[12591]: AA42C3322AD: message-id=<[email protected]>
  18. Mar 5 22:39:01 srf postfix/qmgr[30513]: AA42C3322AD: from=<[email protected]>, size=1133, nrcpt=1 (queue active)
  19. Mar 5 22:39:01 srf postfix/smtpd[12552]: disconnect from xxx.t-dialin.net[79.xxx.xxx.xx]
  20. Mar 5 22:39:03 srf postfix/smtp[12592]: AA42C3322AD: to=<[email protected]>, relay=gmail-smtp-in.l.google.com[74.125.77.27]:25, delay=1.6, delays=0.11/0.02/0.07/1.4, dsn=2.0.0, status=sent (250 2.0.0 OK 1299361143 p10si1877141eeh.48)
  21. Mar 5 22:39:03 srf postfix/qmgr[30513]: AA42C3322AD: removed
  22. Mar 5 22:39:09 srf postfix/smtpd[8163]: timeout after CONNECT from xxx.t-dialin.net[79.xxx.xxx.xx]
  23. Mar 5 22:39:09 srf postfix/smtpd[8163]: disconnect from xxx.t-dialin.net[79.xxx.xxx.xx]
  24.  
  25. TELNET:
  26.  
  27. telnet domain.com 25
  28. Trying 213.xx.xx.xx...
  29. Connected to domain.com.
  30. Escape character is '^]'.
  31. 220 domain.com ESMTP Postfix (Debian/GNU)
  32.  
  33.  
  34. telnet domain.com 587
  35. Trying 213.239.209.150...
  36. Connected to domain.com.
  37. Escape character is '^]'.
  38. 554 5.7.1 <xxx.t-dialin.net[79.xxx.xxx.xx]>: Client host rejected: Access denied
  39.  
  40. master.cf (submission extract)
  41.  
  42. ==========================================================================
  43. smtp inet n - n - - smtpd
  44. submission inet n - n - - smtpd
  45. -o smtpd_etrn_restrictions=reject
  46. -o smtpd_enforce_tls=yes
  47. -o smtpd_sasl_auth_enable=yes
  48. -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  49. -o smtp_generic_maps=
  50. -o sender_canonical_maps=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement