Archive for March, 2010

How to report spam from Google, Yahoo and Hotmail email ids

Saturday, March 20th, 2010

The big boys of the free email world, namely Google, Yahoo and Hotmail have zero tolerance towards users who abuse their mail accounts and use it to send UCE (unsolicited commercial email) to other email users. Here are a list of links which can be used to report such spam incidents so that their accounts can be permanently disabled by these providers.

Feel free to share any other resources which can be of use to report spam to other such providers of free email services.

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

http port 80 redirection

Saturday, March 20th, 2010

If you want to redirect all incoming TCP traffic on port 80 to a custom port say 8089 on the local machine, then xinetd is a good option. Xinetd, the Extended Internet Daemon, is an open-source super-server  daemon which runs on many Unix-like  systems and manages Internet-based connectivity.

Follow the below steps redirect to the 80 port.

Login to your Linux server as super user i.e. ‘root’.

Create a file under /etc/xinetd.d/ folder as http_redirector

# vi /etc/xinetd.d/http_redirector

Now add the following entries in the files.

service http_redirector
{
type = UNLISTED
disable = no
socket_type = stream
protocol = tcp
user = root
wait = no
port = 80
redirect = 127.0.0.1 8089
log_type = FILE /tmp/httpredirector.log
}

Restart the xinetd service.

# service xinetd restart

That’s all you are done.

Backup Power Solution at our Workplace

Wednesday, March 17th, 2010

power backup solution for diademThis year, I am expecting a power crisis in Kolkata for the following reasons:

  • Summer has crept in earlier this year and therefore ACs will start gobbling up energy sooner than expected.
  • Salt Lake, which was supposed to be a VIP area is not going to get preferential status with regards to power outages and would have to face the heat like the rest of the city.
  • Overall energy consumption has grown considerably over the past couple of years and would continue to soar. In comparison the supply of additional energy has crept at a slow pace and the deficit only seems to be widening.

Keeping the above factors in mind, we have invested in our own power backup solution, a Honda 2.8 KVA diesel powered generator which should keep our office humming with activity in the event of a power outage or “loadshedding” as its more commonly known in the city.

We were earlier planning to install a large rack of batteries with an online UPS but it was a relatively expensive solution with limited power backup availability. It would have also taken up additional storage space in our office along with periodic replacement of batteries, i.e. higher maintenance costs.

We arranged for a demo of the Honda generators and the Honda salesmen were very efficient and prompt in handling our request and provided us with a live demo which ensured that it would run our PCs and office equipment and scale up as our load increases. This little baby is also environment friendly with restricted CO2 emissions and low running noise, so it should keep our neighbors happy as well!

This is a small step in our continued efforts to ensure that our support services are available round the clock for your business :) .

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Mail Spam Prevention with RBL/DNSBL

Friday, March 5th, 2010

RBL stands for Real-time Black-hole List, this is a term for DNS based systems designed to assist in the prevention of email abuse. The first such system was created by Mail Abuse Prevention System (MAPS) LLC. The generic name for such services is DNSBL.

The RBL usually lists server IP addresses from ISPs whose customers are responsible for the spam and from ISPs whose servers are hijacked for spam relay. The DNSBL consists of a DNS based system containing lists of IP addresses whose owners refuse to stop the proliferation of spam whether this is by running their mail servers as open relays, or by allowing their users free outbound access to port 25.

In the case of E-mail there are distributed projects on the Internet which monitor where spam mail is originating from and add these to a real time list which can be checked when deciding whether to accept or deny mail.

Most spam on the Internet originates from two places:

  • Virus/Trojan infected machines which appear to be running normally to a user but are also sending spam out to the Internet at large after being fed a list of addresses/spam e-mail from a remote operator.
  • Professional spammers. Who send spam out from their own systems up to any limits by ISP or any compromised mail server.

The RBL identifies these machines by their internet address and adds them to a list that can be checked in real time by an e-mail server. If a server has been listed as a spam host the mail will be refused immediately. This means less overhead on e-mail systems and a lot less spam for end users. It also generally means less “fake” bounce messsages that users receive when spam is forged to come from them.

As subscribers to the DNSBL, ISPs and companies will know from which IP addresses to block traffic. Most traffic blocking occurs during the SMTP connection phase. The receiving end will check the DNSBL for the connecting IP address. If the IP address matches one on the list, then the connection gets dropped before accepting any traffic from the IP address.

Below are the lists of few RBL/DNSBL sites.
SpamCop – http://www.spamcop.net/
The Spamhaus Project – http://www.spamhaus.org/
Mail Abuse Prevention System LLC – http://www.mail-abuse.com/
The Spam and Open Relay Blocking System – http://www.sorbs.net/
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...