IBM AH0QXML User Guide - Page 22

Confusing the harvesters, 2.1.4 Inform Users, Mailto tags, Address obfuscation

Page 22 highlights

2.1.3 Confusing the harvesters The e-mail harvesters are programs that gather e-mail addresses of a specific format. If the format of the address does not meet the criteria of the program it will not be gathered for spam usage. Mailto tags One area where you may want to employ this tactic is on your public Internet site. Harvesters are notorious for going after any address in a mailto: tag. One way to protect your addresses on the Web site is to write the mailto: tag with a hexadecimal e-mail address rather than an ASCII address. All browsers can understand these addresses while harvesting programs will not pick them up. Here is an example of an address converted to hexadecimal: ASCII: [email protected] Hex: Email me Here is an example of a perl script that will convert ASCII addresses to hex: #! /usr/bin/perl # Little perl program to convert ascii email addresses to hex # to avoid spam harvesting from mailto: tags my $addr = shift or die "usage: $0 email\@address.dom\n"; $addr =~ s/(.)/ sprintf('%%%2x',ord($1)) /ge; chomp($addr); print "$addr\n"; Address obfuscation If you are posting to a newsgroup or to a Web discussion board where you suspect that your address may be gathered, consider munging. Address munging involves changing your real e-mail address in a way that will make it unavailable for harvesting. Normally this involves adding a "NOSPAM" or some other text string that other people will know to remove before sending mail to that address. Harvesting programs are often not smart enough to distinguish between a munged address and a real address. An example of such an e-mail address is [email protected]. 2.1.4 Inform Users The more users know about the cause of their addresses being picked up by spammers, the greater the chance that they can avoid getting on the list. 10 Lotus Domino 6 spam Survival Guide for IBM eServer

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120

10
Lotus Domino 6 spam Survival Guide for IBM eServer
2.1.3
Confusing the harvesters
The e-mail harvesters are programs that gather e-mail addresses of a specific
format. If the format of the address does not meet the criteria of the program it
will not be gathered for spam usage.
Mailto tags
One area where you may want to employ this tactic is on your public Internet site.
Harvesters are notorious for going after any address in a mailto: tag. One way to
protect your addresses on the Web site is to write the mailto: tag with a
hexadecimal e-mail address rather than an ASCII address. All browsers can
understand these addresses while harvesting programs will not pick them up.
Here is an example of an address converted to hexadecimal:
ASCII: <a href=mailto:me%40mydomain.dom>[email protected]</a>
Hex:
<a href= mailto:%6d%65%40%6d%79%64%6f%6d%61%69%6e%2e%64%6f%6d> Email
me</a>
Here is an example of a perl script that will convert ASCII addresses to hex:
#! /usr/bin/perl
# Little perl program to convert ascii email addresses to hex
# to avoid spam harvesting from mailto: tags
my $addr = shift
or die "usage: $0 email\@address.dom\n";
$addr =~ s/(.)/ sprintf('%%%2x',ord($1)) /ge;
chomp($addr);
print "$addr\n";
Address obfuscation
If you are posting to a newsgroup or to a Web discussion board where you
suspect that your address may be gathered, consider
munging
. Address
munging involves changing your real e-mail address in a way that will make it
unavailable for harvesting. Normally this involves adding a
"NOSPAM"
or some
other text string that other people will know to remove before sending mail to that
address. Harvesting programs are often not smart enough to distinguish between
a munged address and a real address. An example of such an e-mail address is
2.1.4
Inform Users
The more users know about the cause of their addresses being picked up by
spammers, the greater the chance that they can avoid getting on the list.