You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
481 lines
9.5 KiB
481 lines
9.5 KiB
#!/bin/sh |
|
# Copyright (c) 2022, Jeffrey Bencteux |
|
# All rights reserved. |
|
|
|
# This source code is licensed under the GPLv3 license found in the |
|
# LICENSE file in the root directory of this source tree. |
|
|
|
usage() |
|
{ |
|
echo "Usage: $0 [OPTIONS]..." |
|
echo "check mail security of a given domain" |
|
echo |
|
echo "arguments:" |
|
echo " -d domain to be checked" |
|
echo " -h display this help and exit" |
|
echo " -l log file to output to" |
|
echo " -p extract DKIM public key if found" |
|
echo " -r SPF recursive tests" |
|
exit 0 |
|
} |
|
|
|
log() |
|
{ |
|
echo "$1" |
|
|
|
if [ "$logfile" != "" ]; then |
|
echo "$1" >> "$logfile" |
|
fi |
|
} |
|
|
|
print_good() |
|
{ |
|
echo "\e[1;32m[+]\e[0m $1" |
|
|
|
if [ "$logfile" != "" ]; then |
|
echo "[+] $1" >> "$logfile" |
|
fi |
|
} |
|
|
|
|
|
print_bad() |
|
{ |
|
echo "\e[1;31m[-]\e[0m $1" |
|
|
|
if [ "$logfile" != "" ]; then |
|
echo "[-] $1" >> "$logfile" |
|
fi |
|
} |
|
|
|
print_medium() |
|
{ |
|
echo "\e[1;33m[~]\e[0m $1" |
|
|
|
if [ "$logfile" != "" ]; then |
|
echo "[~] $1" >> "$logfile" |
|
fi |
|
} |
|
|
|
print_info() |
|
{ |
|
echo "\e[1;34m[I]\e[0m $1" |
|
|
|
if [ "$logfile" != "" ]; then |
|
echo "[I] $1" >> "$logfile" |
|
fi |
|
} |
|
|
|
d="" |
|
spf_recursive=0 |
|
spf_specific_found=0 |
|
dkim_selectors_file="./dkim_selectors.txt" |
|
dkim_extract=0 |
|
dkim_key_outfile="./dkim_pubkey.pem" |
|
# Quite a hard choice of what is a good key size here, for now keeping to < 2048 bits |
|
dkim_key_minsize=2048 |
|
specific="" |
|
|
|
while getopts "d:hl:pr" o; do |
|
case "${o}" in |
|
d) |
|
d="${OPTARG}" |
|
;; |
|
h) |
|
usage |
|
;; |
|
l) |
|
logfile="${OPTARG}" |
|
;; |
|
p) |
|
dkim_extract=1 |
|
;; |
|
r) |
|
spf_recursive=1 |
|
;; |
|
*) |
|
usage |
|
;; |
|
esac |
|
done |
|
shift $((OPTIND-1)) |
|
|
|
log " _ .-') ('-. .-') ('-. ('-. .-..-. .-') " |
|
log " ( '.( OO )_ ( OO ).-. ( OO ). _( OO) ( OO ) /\\ ( OO ) " |
|
log " ,--. ,--.) / . --. / ,-.-') ,--. (_)---\\_)(,------. .-----. .-----. ,--. ,--.,--. ,--. " |
|
log " | \`.' | | \\-. \\ | |OO) | |.-') / _ | | .---' ' .--./ ' .--./ | | | || .' / " |
|
log " | |.-'-' | | | | \\ | | OO )\\ :\` \`. | | | |('-. | |('-. | .| || /, " |
|
log " | |'.'| | \\| |_.' | | |(_/ | |\`-' | '..\`''.)(| '--. /_) |OO )/_) |OO )| || ' _) " |
|
log " | | | | | .-. | ,| |_.'(| '---.'.-._) \\ | .--' || |\`-'| || |\`-'| | .-. || . \\ " |
|
log " | | | | | | | |(_| | | | \\ / | \`---.(_' '--'\\(_' '--'\\ | | | || |\\ \\ " |
|
log " \`--' \`--' \`--' \`--' \`--' \`------' \`-----' \`------' \`-----' \`-----' \`--' \`--'\`--' '--' " |
|
|
|
get_mx() |
|
{ |
|
domain="$1" |
|
|
|
mx=$(dig +short mx "$domain") |
|
} |
|
|
|
has_mx_specific() |
|
{ |
|
name="$1" |
|
local full_name="$2" |
|
local mx_dn="$3" |
|
|
|
if echo "$mx" | grep -q "$mx_dn"; then |
|
print_info "It looks like domain is using $full_name, including specific tests." |
|
specific="$name" |
|
fi |
|
} |
|
|
|
get_spf() |
|
{ |
|
local domain="$1" |
|
|
|
spf=$(dig +short txt "$domain" | grep 'spf') |
|
} |
|
|
|
has_spf() |
|
{ |
|
local spf="$1" |
|
|
|
if [ "$spf" = "" ]; then |
|
print_bad "No SPF for domain" |
|
else |
|
print_good "domain has a SPF record" |
|
fi |
|
} |
|
|
|
loose_spf() |
|
{ |
|
local spf="$1" |
|
|
|
if [ "$spf" = "" ]; then |
|
return |
|
fi |
|
|
|
if echo "$spf" | grep -vq "\-all"; then |
|
print_bad "SPF not in FAIL mode (\"-all\")" |
|
else |
|
print_good "SPF is in FAIL mode (\"-all\")" |
|
fi |
|
} |
|
|
|
spf_include_domain() |
|
{ |
|
local spf="$1" |
|
local name="$2" |
|
local full_name="$3" |
|
local include="$4" |
|
local found_in_mx=$5 |
|
|
|
if [ "$spf" = "" ]; then |
|
return |
|
fi |
|
|
|
if [ "$found_in_mx" != "$name" ]; then |
|
return |
|
fi |
|
|
|
if echo "$spf" | grep -q "include:$include"; then |
|
print_good "SPF includes $name one ($include)" |
|
spf_specific_found=1 |
|
fi |
|
} |
|
|
|
spf_includes_recursive() |
|
{ |
|
local spf="$1" |
|
local domain="$2" |
|
local specific="$3" |
|
|
|
if [ "$spf_recursive" -eq 0 ]; then |
|
return |
|
fi |
|
|
|
if [ "$spf" = "" ]; then |
|
return |
|
fi |
|
|
|
# Unsure this weak parsing catches all cases |
|
spf_includes=$(echo "$spf" | grep -Eo "include:[^ ]+" | sed 's/include://g') |
|
|
|
if [ "$spf_includes" != "" ]; then |
|
print_info "SPF recursive check for $domain" |
|
fi |
|
|
|
|
|
for include in $spf_includes; do |
|
include_res=$(dig +short txt "$include" | grep "spf") |
|
|
|
if [ "$include_res" = "" ]; then |
|
print_bad "SPF include \"$include\" does not resolve to a valid DNS TXT record" |
|
else |
|
print_info "\"$include\": $include_res" |
|
spf_include_domain "$include_res" "m365" "Microsoft 365" "spf.protection.outlook.com" "$specific" |
|
spf_include_domain "$include_res" "google" "Google Workspace" "_spf.google.com" "$specific" |
|
spf_includes_recursive "$include_res" "$include" "$specific" |
|
fi |
|
done |
|
} |
|
|
|
# DMARC checks |
|
get_dmarc() |
|
{ |
|
local domain="$1" |
|
|
|
dmarc=$(dig +short txt "_dmarc.$domain") |
|
} |
|
|
|
has_dmarc() |
|
{ |
|
local dmarc="$1" |
|
|
|
if [ "$dmarc" = "" ]; then |
|
print_bad "No dmarc for domain" |
|
else |
|
print_good "domain has a DMARC record" |
|
fi |
|
} |
|
|
|
loose_dmarc_policy() |
|
{ |
|
local dmarc="$1" |
|
|
|
if [ "$dmarc" = "" ]; then |
|
return |
|
fi |
|
|
|
if echo "$dmarc" | grep -Eq "[ ;]p=(reject|quarantine)"; then |
|
print_good "DMARC policy is correct" |
|
else |
|
print_bad "DMARC policy not set to \"reject\" or \"quarantine\"" |
|
fi |
|
} |
|
|
|
loose_dmarc_subpolicy() |
|
{ |
|
local dmarc="$1" |
|
|
|
if [ "$dmarc" = "" ]; then |
|
return |
|
fi |
|
|
|
|
|
if echo "$dmarc" | grep "sp=" | grep -vEq "sp=(reject|quarantine)"; then |
|
print_bad "DMARC subpolicy not set to \"reject\" or \"quarantine\"" |
|
else |
|
print_good "DMARC subpolicy is correct" |
|
fi |
|
} |
|
|
|
dmarc_pct() |
|
{ |
|
local dmarc="$1" |
|
|
|
if [ "$dmarc" = "" ]; then |
|
return |
|
fi |
|
|
|
if echo "$dmarc" | grep "pct=" | grep -vEq "pct=100"; then |
|
print_bad "DMARC sample percentage not set to 100" |
|
fi |
|
} |
|
|
|
dmarc_rua_ruf() |
|
{ |
|
local dmarc="$1" |
|
|
|
if [ "$dmarc" = "" ]; then |
|
return |
|
fi |
|
|
|
rua=$(echo "$dmarc" | grep -oE "rua=[^ ]+";) |
|
ruf=$(echo "$dmarc" | grep -oE "ruf=[^ ]+";) |
|
|
|
if [ "$rua" = "" ]; then |
|
print_medium "DMARC no aggregate report URI (RUA) defined" |
|
else |
|
if echo "$rua" | grep -Eo "@[^ ,\"]+" | grep -vq "$d"; then |
|
print_medium "DMARC RUA is external to the domain, please review manually" |
|
fi |
|
fi |
|
|
|
if [ "$ruf" = "" ]; then |
|
print_medium "DMARC no forensic report URI (RUF) defined" |
|
else |
|
if echo "$ruf" | grep -Eo "@[^ ,\"]+" | grep -vq "$d"; then |
|
print_medium "DMARC RUF is external to the domain, please review manually" |
|
fi |
|
fi |
|
} |
|
|
|
dkim_specific() |
|
{ |
|
local name="$1" |
|
local full_name="$2" |
|
local selectors="$3" |
|
|
|
if [ "$specific" != "$name" ]; then |
|
return |
|
fi |
|
|
|
for s in $selectors; do |
|
local curr=$(dig +short txt "$s._domainkey.$d" | grep "v=DKIM") |
|
|
|
if [ "$curr" != "" ]; then |
|
print_good "DKIM $full_name set ($s)" |
|
dkim="$curr" |
|
fi |
|
done |
|
|
|
if [ "$dkim" = "" ]; then |
|
print_bad "DKIM $full_name selectors not set while $full_name is used" |
|
fi |
|
} |
|
|
|
dkim_m365() |
|
{ |
|
if [ "$specific" != "m365" ]; then |
|
return |
|
fi |
|
|
|
local s1=$(dig +short txt "selector1._domainkey.$d" | grep "v=DKIM") |
|
local s2=$(dig +short txt "selector2._domainkey.$d" | grep "v=DKIM") |
|
|
|
if [ "$s1" != "" ]; then |
|
print_good "DKIM Microsoft 365 selector set: $s1 $s2" |
|
dkim="$s1" |
|
else |
|
if [ "$s2" != "" ]; then |
|
print_good "DKIM Microsoft 365 selector set: $s1 $s2" |
|
dkim="$s2" |
|
else |
|
print_bad "DKIM Microsoft 365 selectors not set while MS365 is used" |
|
fi |
|
fi |
|
} |
|
|
|
dkim_well_known() |
|
{ |
|
log "Trying well-known selectors..." |
|
|
|
while read -r s; do |
|
print_info "$s" |
|
|
|
dkim=$(dig +short txt "$s._domainkey.$d" | grep "v=DKIM") |
|
|
|
if [ "$dkim" != "" ]; then |
|
print_good "DKIM found with selector $s: $dkim" |
|
return |
|
fi |
|
done < "$dkim_selectors_file" |
|
|
|
print_medium "DKIM could not be found, try obtaining a valid selector for manual review." |
|
} |
|
|
|
dkim_extract_key() |
|
{ |
|
if [ "$dkim_extract" -eq 0 ]; then |
|
return |
|
fi |
|
|
|
local dkim_p=$(echo "$dkim" | grep -Eo 'p=[^;]+' | sed 's/p=//g' | sed 's/[ "]//g') |
|
|
|
print_info "Extracting DKIM public key..." |
|
|
|
echo "-----BEGIN PUBLIC KEY-----" > "$dkim_key_outfile" |
|
echo "$dkim_p" >> "$dkim_key_outfile" |
|
echo "-----END PUBLIC KEY-----" >> "$dkim_key_outfile" |
|
|
|
dkim_parsed_key=$(openssl rsa -pubin -in "$dkim_key_outfile" -text) |
|
|
|
log "$dkim_parsed_key" |
|
} |
|
|
|
dkim_crypto_keysize() |
|
{ |
|
if [ "$dkim_parsed_key" = "" ]; then |
|
return |
|
fi |
|
|
|
local keysize=$(echo "$dkim_parsed_key" | grep -E 'Public-Key:[ ]+\([0-9]+[ ]+bit\)' | grep -Eo '[0-9]+') |
|
|
|
if [ "$keysize" -lt $dkim_key_minsize ]; then |
|
print_medium "DKIM public key size is < $dkim_key_minsize bits ($keysize bits)" |
|
else |
|
print_good "DKIM public key size is correct ($keysize bits)" |
|
fi |
|
} |
|
|
|
if [ "$d" = "" ]; then |
|
echo "No domain provided." |
|
usage |
|
exit 1 |
|
fi |
|
|
|
log "Checking \e[1;32m$d\e[0m" |
|
log |
|
|
|
# Preliminary checks |
|
get_mx "$d" |
|
|
|
if [ "$mx" = "" ]; then |
|
log "No MX record for domain, are you sure it is used for mail communications?" |
|
else |
|
log "MX: $mx" |
|
fi |
|
log "" |
|
|
|
has_mx_specific "m365" "Microsoft 365" "mail.protection.outlook.com" |
|
has_mx_specific "google" "Google Workspace" "aspmx.l.google.com" |
|
log "" |
|
|
|
# SPF checks |
|
get_spf "$d" |
|
|
|
log "SPF: $spf" |
|
log "" |
|
|
|
has_spf "$spf" |
|
loose_spf "$spf" |
|
spf_include_domain "$spf" "m365" "Microsoft 365" "spf.protection.outlook.com" "$specific" |
|
spf_include_domain "$spf" "google" "Google Workspace" "_spf.google.com" "$specific" |
|
spf_includes_recursive "$spf" "$d" "$specific" |
|
|
|
# Only at the end of the recursion can we test if specific SPF has not been found |
|
if [ "$spf_specific_found" -eq 0 ]; then |
|
print_medium "$name SPF not in includes ($include)" |
|
fi |
|
|
|
log "" |
|
|
|
# DMARC checks |
|
get_dmarc "$d" |
|
|
|
log "DMARC: $dmarc" |
|
log "" |
|
|
|
has_dmarc "$dmarc" |
|
loose_dmarc_policy "$dmarc" |
|
loose_dmarc_subpolicy "$dmarc" |
|
dmarc_pct "$dmarc" |
|
dmarc_rua_ruf "$dmarc" |
|
|
|
log "" |
|
|
|
# DKIM checks |
|
log "DKIM:" |
|
log "" |
|
|
|
dkim_specific "m365" "Microsoft 365" "selector1 selector2" |
|
dkim_specific "google" "Google Workspace" "google" |
|
|
|
if [ "$specific" = "" ]; then |
|
dkim_well_known |
|
fi |
|
|
|
if [ "$dkim" != "" ]; then |
|
dkim_extract_key |
|
dkim_crypto_keysize |
|
fi
|
|
|