|
Message-ID: <20200423151430.GA21258@openwall.com> Date: Thu, 23 Apr 2020 17:14:30 +0200 From: Solar Designer <solar@...nwall.com> To: oss-security@...ts.openwall.com Cc: PromiseLabs Pentest Research <pentest@...miselabs.net>, Wietse Venema <wietse@...cupine.org> Subject: Re: spoofing of local email sender via a homoglyph attack On Thu, Apr 23, 2020 at 05:32:15PM +0300, PromiseLabs Pentest Research wrote: > To follow up on your questions: Thanks! Now this is specific. > The current configuration actually blocks any non-authorized requests as > explained in the description. The use-case of this (from my perspective) > is that it could be used to advance a social-engineer attack into > tricking the recipients believing that they are getting an email from a > high-level position at the company. > > It's related to the from header. > > Issuing a regular unauthenticated request, trying to send an email from > john.doe, which is a high-level user at the company: > $ nc -v *** OMITTED *** 25 > Connection to *** OMITTED *** 25 port [tcp/smtp] succeeded! > 220 *** OMITTED *** ESMTP Postfix > mail from: john.doe@...ver.com > 250 2.1.0 Ok > rcpt to: existing.user@...ver.com > 553 5.7.1 <john.doe@...ver.com>: Sender address rejected: not logged in > > As you can see, the mail server rejects the request as the existing user > hasn't authenticated himself. My guess is this works when the server is configured to support SMTP AUTH for potentially relaying mail from local users to other servers, but as you show under that configuration the authentication requirement applies even for messages intended for local users. That's curious. I don't know whether that behavior is documented and expected, and whether it is considered a security feature or not. I hope Wietse can weigh in on this. > However, issuing a request using a homoglyph character: > $ echo -ne "j\xce\xbfhn.doe@...ver.com" | xclip -selection clipboard > $ nc -v *** OMITTED *** 25 > Connection to *** OMITTED *** 25 port [tcp/smtp] succeeded! > 220 *** OMITTED *** ESMTP Postfix > mail from: j??hn.doe@...ver.com > 250 2.1.0 Ok > rcpt to: existing.user@...ver.com > 250 2.1.5 Ok > data > 354 End data with <CR><LF>.<CR><LF> > > The victim would get an email thinking it's from the actual john.doe > user. OK. To me, the real unexpected issue here is not the possibility to spoof (in fact, it's unexpected to me that it wasn't possible in your first example), but rather the possibility to probe for valid usernames. That other aspect is more likely CVE-worthy, in my opinion. There's precedent that such easy probing for usernames shouldn't work, and is getting CVEs against services where it does work. There's probably room for hardening here where in cases when SMTP AUTH is enforced for local users, mail from other local-looking addresses yet with non-existent usernames be rejected in exactly the same way (and with the same timings - tricky!) as mail from existing local usernames when SMTP AUTH is not attempted (like in your example). There should also be no visible (and ideally no measurable) difference for existing and non-existent usernames when SMTP AUTH is attempted but fails. Alternatively, mail to local users could be accepted consistently regardless of whether the claimed sender username exists locally or not, thus without requiring authentication. However, this would leave unfixed the username probing possibility on attempting to relay mail to external servers, where bypassing authentication is certainly not an option. So overall that isn't a valid fix for the username probing. I assume the tests above are with postfix-2.10.1-7.el7.x86_64 as you had mentioned previously, and behavior could very well vary between builds. > Whether this is applicable for assigning a CVE it's up to you decide, No, technically it's up to MITRE, and they've already assigned one - but I complain that they did so without sufficient detail on the issue. > the only actual risk here discovered so far is a social-engineering > attack. And username probing. > >>> Use CVE-2020-12063. Alexander
Powered by blists - more mailing lists
Please check out the Open Source Software Security Wiki, which is counterpart to this mailing list.
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.