Refactoring: Added consistent email address validation to backend.

This commit is contained in:
Jens Pfeifer 2019-11-21 16:49:14 +01:00 committed by Thorsten Eckel
parent 2beb1b4506
commit 7e4b46b65c
11 changed files with 215 additions and 40 deletions

View file

@ -41,13 +41,6 @@ class FormController < ApplicationController
if params[:name].blank? if params[:name].blank?
errors['name'] = 'required' errors['name'] = 'required'
end end
if params[:email].blank?
errors['email'] = 'required'
elsif !/@/.match?(params[:email])
errors['email'] = 'invalid'
elsif params[:email].match?(/(>|<|\||\!|"|§|'|\$|%|&|\(|\)|\?|\s|\.\.)/)
errors['email'] = 'invalid'
end
if params[:title].blank? if params[:title].blank?
errors['title'] = 'required' errors['title'] = 'required'
end end
@ -55,11 +48,12 @@ class FormController < ApplicationController
errors['body'] = 'required' errors['body'] = 'required'
end end
# realtime verify if params[:email].blank?
if errors['email'].blank? errors['email'] = 'required'
else
begin begin
address = ValidEmail2::Address.new(params[:email]) email_address_validation = EmailAddressValidation.new(params[:email])
if !address || !address.valid? || !address.valid_mx? if !email_address_validation.valid_format? || !email_address_validation.valid_mx?
errors['email'] = 'invalid' errors['email'] = 'invalid'
end end
rescue => e rescue => e

View file

@ -97,18 +97,19 @@ class TicketsController < ApplicationController
# try to create customer if needed # try to create customer if needed
if clean_params[:customer_id].present? && clean_params[:customer_id] =~ /^guess:(.+?)$/ if clean_params[:customer_id].present? && clean_params[:customer_id] =~ /^guess:(.+?)$/
email = $1 email_address = $1
if email !~ /@/ || email =~ /(>|<|\||\!|"|§|'|\$|%|&|\(|\)|\?|\s)/ email_address_validation = EmailAddressValidation.new(email_address)
if !email_address_validation.valid_format?
render json: { error: 'Invalid email of customer' }, status: :unprocessable_entity render json: { error: 'Invalid email of customer' }, status: :unprocessable_entity
return return
end end
local_customer = User.find_by(email: email.downcase) local_customer = User.find_by(email: email_address.downcase)
if !local_customer if !local_customer
role_ids = Role.signup_role_ids role_ids = Role.signup_role_ids
local_customer = User.create( local_customer = User.create(
firstname: '', firstname: '',
lastname: '', lastname: '',
email: email, email: email_address,
password: '', password: '',
active: true, active: true,
role_ids: role_ids, role_ids: role_ids,

View file

@ -8,7 +8,8 @@ class Channel::Driver::Sendmail
# set system_bcc of config if defined # set system_bcc of config if defined
system_bcc = Setting.get('system_bcc') system_bcc = Setting.get('system_bcc')
if system_bcc.present? && system_bcc =~ /@/ email_address_validation = EmailAddressValidation.new(system_bcc)
if system_bcc.present? && email_address_validation.valid_format?
attr[:bcc] ||= '' attr[:bcc] ||= ''
attr[:bcc] += ', ' if attr[:bcc].present? attr[:bcc] += ', ' if attr[:bcc].present?
attr[:bcc] += system_bcc attr[:bcc] += system_bcc

View file

@ -55,7 +55,8 @@ class Channel::Driver::Smtp
# set system_bcc of config if defined # set system_bcc of config if defined
system_bcc = Setting.get('system_bcc') system_bcc = Setting.get('system_bcc')
if system_bcc.present? && system_bcc =~ /@/ email_address_validation = EmailAddressValidation.new(system_bcc)
if system_bcc.present? && email_address_validation.valid_format?
attr[:bcc] ||= '' attr[:bcc] ||= ''
attr[:bcc] += ', ' if attr[:bcc].present? attr[:bcc] += ', ' if attr[:bcc].present?
attr[:bcc] += system_bcc attr[:bcc] += system_bcc

View file

@ -102,10 +102,11 @@ module Channel::Filter::IdentifySender
next if items.blank? next if items.blank?
items.each do |address_data| items.each do |address_data|
email_address = address_data.address email_address = sanitize_email(address_data.address)
next if email_address.blank? next if email_address.blank?
next if !email_address.match?(/@/)
next if email_address.match?(/\s/) email_address_validation = EmailAddressValidation.new(email_address)
next if !email_address_validation.valid_format?
user_create( user_create(
firstname: address_data.display_name, firstname: address_data.display_name,
@ -131,9 +132,13 @@ module Channel::Filter::IdentifySender
if recipient =~ /^(.+?)<(.+?)>/ if recipient =~ /^(.+?)<(.+?)>/
display_name = $1 display_name = $1
end end
next if address.blank? next if address.blank?
next if !address.match?(/@/)
next if address.match?(/\s/) address = sanitize_email(address)
email_address_validation = EmailAddressValidation.new(address)
next if !email_address_validation.valid_format?
user_create( user_create(
firstname: display_name, firstname: display_name,
@ -194,10 +199,12 @@ module Channel::Filter::IdentifySender
string.downcase string.downcase
.strip .strip
.delete('"') .delete('"')
.delete("'")
.delete(' ') # see https://github.com/zammad/zammad/issues/2254 .delete(' ') # see https://github.com/zammad/zammad/issues/2254
.sub(/^<|>$/, '') # see https://github.com/zammad/zammad/issues/2254 .sub(/^<|>$/, '') # see https://github.com/zammad/zammad/issues/2254
.sub(/\A'(.*)'\z/, '\1') # see https://github.com/zammad/zammad/issues/2154 .sub(/\A'(.*)'\z/, '\1') # see https://github.com/zammad/zammad/issues/2154
.gsub(/\s/, '') # see https://github.com/zammad/zammad/issues/2198 .gsub(/\s/, '') # see https://github.com/zammad/zammad/issues/2198
.gsub(/\.\z/, '')
end end
end end

View file

@ -48,8 +48,10 @@ check and if channel not exists reset configured channels for email addresses
return true if email.blank? return true if email.blank?
self.email = email.downcase.strip self.email = email.downcase.strip
raise Exceptions::UnprocessableEntity, 'Invalid email' if !email.match?(/@/) email_address_validation = EmailAddressValidation.new(email)
raise Exceptions::UnprocessableEntity, 'Invalid email' if email.match?(/\s/) if !email_address_validation.valid_format?
raise Exceptions::UnprocessableEntity, 'Invalid email'
end
true true
end end

View file

@ -1352,13 +1352,13 @@ result
# send notifications only to email addresses # send notifications only to email addresses
next if recipient_email.blank? next if recipient_email.blank?
next if !recipient_email.match?(/@/)
# check if address is valid # check if address is valid
begin begin
Mail::AddressList.new(recipient_email).addresses.each do |address| Mail::AddressList.new(recipient_email).addresses.each do |address|
recipient_email = address.address recipient_email = address.address
break if recipient_email.present? && recipient_email =~ /@/ && !recipient_email.match?(/\s/) email_address_validation = EmailAddressValidation.new(recipient_email)
break if recipient_email.present? && email_address_validation.valid_format?
end end
rescue rescue
if recipient_email.present? if recipient_email.present?
@ -1368,11 +1368,11 @@ result
recipient_email = "#{$2}@#{$3}" recipient_email = "#{$2}@#{$3}"
end end
next if recipient_email.blank?
next if !recipient_email.match?(/@/)
next if recipient_email.match?(/\s/)
end end
email_address_validation = EmailAddressValidation.new(recipient_email)
next if !email_address_validation.valid_format?
# do not sent notifications to this recipients # do not sent notifications to this recipients
send_no_auto_response_reg_exp = Setting.get('send_no_auto_response_reg_exp') send_no_auto_response_reg_exp = Setting.get('send_no_auto_response_reg_exp')
begin begin

View file

@ -959,8 +959,11 @@ try to find correct name
self.email = email.downcase.strip self.email = email.downcase.strip
return true if id == 1 return true if id == 1
raise Exceptions::UnprocessableEntity, 'Invalid email' if !email.match?(/@/)
raise Exceptions::UnprocessableEntity, 'Invalid email' if email.match?(/\s/) email_address_validation = EmailAddressValidation.new(email)
if !email_address_validation.valid_format?
raise Exceptions::UnprocessableEntity, 'Invalid email'
end
true true
end end
@ -1182,7 +1185,10 @@ raise 'Minimum one user need to have admin permissions'
def avatar_for_email_check def avatar_for_email_check
return true if Setting.get('import_mode') return true if Setting.get('import_mode')
return true if email.blank? return true if email.blank?
return true if !email.match?(/@/)
email_address_validation = EmailAddressValidation.new(email)
return true if !email_address_validation.valid_format?
return true if !saved_change_to_attribute?('email') && updated_at > Time.zone.now - 10.days return true if !saved_change_to_attribute?('email') && updated_at > Time.zone.now - 10.days
# save/update avatar # save/update avatar

View file

@ -0,0 +1,38 @@
# Validation for email addresses
class EmailAddressValidation
attr_reader :email_address
# @param [String] email_address Email address to be validated
def initialize(email_address)
@email_address = email_address
end
def to_s
email_address
end
# Checks if the email address has a valid format.
# Reports email addresses without dot in domain as valid (zammad@localhost).
#
# @return [true] if email address has valid format
# @return [false] if email address has no valid format
def valid_format?
# Note: Don't use ValidEmail2::Address.valid? here because it requires the
# email address to have a dot in its domain.
@valid_format ||= email_address.match?(URI::MailTo::EMAIL_REGEXP)
end
# Checks if the domain of the email address has a valid MX record.
#
# @return [true] if email address domain has an MX record
# @return [false] if email address domain has no MX record
def valid_mx?
return @valid_mx if @valid_mx
validated_email_address = ValidEmail2::Address.new(email_address)
@valid_mx = validated_email_address&.valid_mx?
end
end

View file

@ -0,0 +1,125 @@
require 'rails_helper'
RSpec.describe EmailAddressValidation do
describe 'Valid email address' do
describe 'with dot in domain' do
describe 'with MX record' do
let(:email_address) { 'support@zammad.com' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as valid' do
expect(email_address_validation.valid_format?).to be(true)
end
it 'reports email address to have domain with MX record' do
expect(email_address_validation.valid_mx?).to be(true)
end
end
describe 'without MX record' do
let(:email_address) { 'someone@this-is-probably-a-non-existent-domain.com.example' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as valid' do
expect(email_address_validation.valid_format?).to be(true)
end
it 'reports email address to have domain without MX record' do
expect(email_address_validation.valid_mx?).to be(false)
end
end
end
describe 'without dot in domain' do
let(:email_address) { 'zammad@localhost' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as valid' do
expect(email_address_validation.valid_format?).to be(true)
end
it 'reports email address to have domain without MX record' do
expect(email_address_validation.valid_mx?).to be(false)
end
end
end
describe 'Email address' do
describe 'without domain' do
let(:email_address) { 'zammad' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as invalid' do
expect(email_address_validation.valid_format?).to be(false)
end
it 'reports email address to have domain without MX record' do
expect(email_address_validation.valid_mx?).to be(false)
end
end
describe 'with invalid domain format' do
let(:email_address) { 'support@zammad..com' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as invalid' do
expect(email_address_validation.valid_format?).to be(false)
end
it 'reports email address to have domain without MX record' do
expect(email_address_validation.valid_mx?).to be(false)
end
end
describe 'which is empty' do
let(:email_address) { '' }
let(:email_address_validation) { described_class.new(email_address) }
it 'reports given email address' do
expect(email_address_validation.email_address).to eq(email_address)
expect(email_address_validation.to_s).to eq(email_address)
end
it 'reports email address as invalid' do
expect(email_address_validation.valid_format?).to be(false)
end
it 'reports email address to have domain without MX record' do
expect(email_address_validation.valid_mx?).to be(false)
end
end
end
end

View file

@ -95,14 +95,14 @@ Some Textäöü",
{ {
firstname: '', firstname: '',
lastname: '', lastname: '',
fullname: 'me@exampl\'e.com', fullname: 'me@example.com',
email: 'me@exampl\'e.com', email: 'me@example.com',
}, },
{ {
firstname: '', firstname: '',
lastname: '', lastname: '',
fullname: 'customer@exampl\'e.com', fullname: 'customer@example.com',
email: 'customer@exampl\'e.com', email: 'customer@example.com',
}, },
], ],
}, },
@ -2777,7 +2777,7 @@ Some Text',
firstname: 'Clement.Si', firstname: 'Clement.Si',
lastname: '', lastname: '',
fullname: 'Clement.Si', fullname: 'Clement.Si',
email: 'claudia.shu@yahoo.com.', email: 'claudia.shu@yahoo.com',
}, },
{ {
firstname: '', firstname: '',