Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | Re: Good SPAM filter for Outlook for use in a small non-profite ORG |
|---|---|
| Date: | Thu, 28 Sep 2006 09:38:17 +0300 |
On 24/09/06 16:50 +0300, Mario A. Spinthiras wrote:Indeed i agree. Receiving and bouncing isnt necessarily a bad thing though. I agree its a waste of bandwidth since your already downloading the message. Today's world is full of high speed connections though so doesnt really matter. Plus taking into consideration the fact that if its a virus , an author will make the malicious code as small as possible in order for the end-user-stupid-user to download it nice and fast. That includes spam too. Spammers make the messages very crafty and simple.
Is there a way to implement RBL within an email client ? If so you dont
SpamAssassin or equivalent.
need much of the super duper applications written today to stop spam. RBL usually works perfectly on mail servers. I dont see how it couldnt
DNSBLs are supposed to be used on MX hosts. anything beyond that leads to accept, then bounce scenarios, or merely tagging as spam.
Devdas Bhagat
--------------------------------------------------------------------------- This list is sponsored by: Norwich University
EARN A MASTER OF SCIENCE IN INFORMATION ASSURANCE - ONLINE
The NSA has designated Norwich University a center of Academic Excellence in Information Security. Our program offers unparalleled Infosec management education and the case study affords you unmatched consulting experience. Using interactive e-Learning technology, you can earn this esteemed degree, without disrupting your career or home life.
http://www.msia.norwich.edu/secfocus ---------------------------------------------------------------------------
BEGIN CODE---------------------------------- #!/bin/sh echo "[*] Spam Check Tool" echo "[*] Mario A. Spinthiras (mario at netway dot com dot cy)" echo "" echo ""
if [ -z $1 ]; then echo "Not enough parameters." echo "Usage: $0 [host]"; echo "" echo "Application Terminated!" exit; fi
echo "[*] RBL lists available: $RBLNUM"
echo "[*] Checking for mail servers."
OUTPUT=$(host -t MX $RBLHOST|awk '{ print $7 }'|sed -e 's/.$//g')
if [ -z "$OUTPUT" ]; then echo "[*] Could not retreive mail servers for the requested domain." echo "[*] Exiting." exit; fi
for g in $OUTPUT; do FINALOUT="$g $FINALOUT" done
echo "[*] Mail servers: $FINALOUT" for i in $FINALOUT; do FINALNUM=$(echo $FINALNUM + 1|bc -l) done echo "[*] Mail Servers to query: $FINALNUM"
echo "[*] Performing dns queries.."
for a in $FINALOUT; do
IPTEMP=""
IPTEMP=$(nslookup $a|grep Address|grep -v "#"|awk '{ print $2 }')
if [ -z "$IPTEMP" ]; then
echo "[*] Could not resolve mail server."
echo "[*] Exiting."
exit;
else
IPFINAL="$IPTEMP $IPFINAL"
IPTEMP=$(echo $IPTEMP|sed -e "s/^M//")echo "[*] MX: $a is $IPTEMP" IPFINAL=$(echo $IPFINAL|sed -e "s/^M//") fi done
echo "[*] Setting up RBL query..." for t in $IPFINAL; do PERFORM="$PERFORM $(echo $t|sed '/\n/!G;s/\(.\)\(.*\n\)/&\2\1/;//D;s/.//')" done echo "[*] Reverse Ready: $PERFORM" echo "[*] Checking RBL lists..."
done done
echo "[*] Finished queries!" echo "[*] Not Passed: $YESRBL" echo "[*] Passed: $NORBL"
END CODE-----------------------------------------------
--------------------------------------------------------------------------- This list is sponsored by: Norwich University
http://www.msia.norwich.edu/secfocus ---------------------------------------------------------------------------
| Previous by Date: | Re: Re[2]: No NetBios share + No Open Port = Safe Win98?, Frynge Customer Support |
|---|---|
| Next by Date: | Re: How to find process behing TCP connection ?, Mario A. Spinthiras |
| Previous by Thread: | Re: Good SPAM filter for Outlook for use in a small non-profite ORG, Devdas Bhagat |
| Next by Thread: | Re: Good SPAM filter for Outlook for use in a small non-profite ORG, Mario A. Spinthiras |
| Indexes: | [Date] [Thread] [Top] [All Lists] |