more updates

This commit is contained in:
Bryson Shepard 2023-08-17 22:43:59 -05:00
parent 2994e240b5
commit e896192ffa
10 changed files with 17 additions and 11 deletions

View File

@ -28,7 +28,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
# Check for A Record
a_record=$(dig +short A "$single_domain")

View File

@ -31,7 +31,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
for dns_server in "${DNS_SERVERS[@]}"; do
response=$(dig "@$dns_server" "$single_domain" +short)

View File

@ -31,7 +31,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
for dns_server in "${DNS_SERVERS[@]}"; do
response_time=$(dig "@$dns_server" "$single_domain" +stats +time=1 | grep "Query time:" | awk '{print $4}')

View File

@ -31,7 +31,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
for dns_server in "${DNS_SERVERS[@]}"; do
dnssec_status=$(delv @"$dns_server" +dnssec +nocomments +nocl "$single_domain" 2>&1 | head -n 1)

View File

@ -29,7 +29,7 @@ process_domain() {
local single_domain="$1"
blacklists=("zen.spamhaus.org" "bl.spamcop.net" "b.barracudacentral.org")
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
for blacklist in "${blacklists[@]}"; do
if nslookup "$single_domain.$blacklist" > /dev/null; then

View File

@ -31,7 +31,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
http_response=$(curl -sIL --max-time 10 "http://$single_domain" | grep -i "HTTP/1.1")

View File

@ -27,6 +27,9 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
mx_record=$(dig +short MX "$single_domain" | sort -n | head -n 1 | awk '{print $2}')
if [ -z "$mx_record" ]; then
@ -44,7 +47,7 @@ process_domain() {
pop3110_status=$(timeout 10 nc -z "$mx_record" 110 > /dev/null 2>&1 && echo "Connected" || echo "Failed")
pop3995_status=$(timeout 10 nc -z "$mx_record" 995 > /dev/null 2>&1 && echo "Connected" || echo "Failed")
else
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
result+="\e[1mIMAP Accessibility:\e[0m Netcat and Telnet not available.\n"
result+="\e[1mPOP3 Accessibility:\e[0m Netcat and Telnet not available.\n"
return

View File

@ -28,7 +28,7 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
# Measure initial server response time using curl
response_time=$(curl -o /dev/null -s -w "%{time_starttransfer}\n" "$single_domain")

View File

@ -28,14 +28,14 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[0m $single_domain\n"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
single_domain_ip=$(dig A +short "$single_domain")
rDNS_result=$(dig +short -x "$single_domain_ip")
if [ -n "$rDNS_result" ]; then
result+="\e[34mRDNS Result:\e[32m $rDNS_result\n"
result+="\e[1mRDNS Result:\e[32m $rDNS_result\n"
else
result+="\e[34mRDNS Result:\e[31m No RDNS record found.\n"
result+="\e[1mRDNS Result:\e[31m No RDNS record found.\n"
fi
}

View File

@ -27,6 +27,9 @@ execute_tool() {
process_domain() {
local single_domain="$1"
result+="\e[1mDomain:\e[93m $single_domain\e[0m\n"
mx_record=$(dig +short MX "$single_domain" | sort -n | head -n 1 | awk '{print $2}')
if [ -n "$mx_record" ]; then
smtp_ports="25 465 587"