Zoals zoveel sites staat er ook op mijn site een mail form. Hierin kun je allerlei informatie invullen. Wanneer de bezoeker het formulier verstuurd wordt het als volgt verstuurd met PHP(kort samengevat):
Nou kreeg ik onlangs de volgende contact berichten:
Met de volgende headers
Nou is natuurlijk de vraag, worden het echt misbruikt of is het een poging tot
? Ben ook benieuwd of andere mensen dit al eens hebben meegemaakt
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <?php $naam = $_POST['naam']; // SNIP more stuff... // Create message $sendMessage = ""; $sendMessage .= "Naam:\n".$naam . "\n"; // SNIP more stuff... // Create headers $from = "info@xxx.nl"; $headers=""; // SNIP more headers... //Send mail $to = 'info@xxx.nl'; $subject = 'xxx.nl Contactformulier'; $message = $sendMessage; mail($to, $subject, $message, $headers); ?> |
Nou kreeg ik onlangs de volgende contact berichten:
code:
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
| Family name: the3969@bla.com Name: cured Content-Type: multipart/alternative; boundary=4bdc28dd2925186e1e85e544cb68fd60 X-Mailer: Balsa 1.1.6 Subject: ational regulation of ham production ach cc: tepc2@aol.com cc: ismailie16@yahoo.com cc: haw0302@wmc.com cc: iglesiasenrique@yahoo.com cc: briandmandy@bellsouth.net cc: larryb@wmc.com cc: baby_hot_sauce3@hotmail.com cc: h159381@msn.com This is a multi-part message in MIME format. --4bdc28dd2925186e1e85e544cb68fd60 Content-Transfer-Encoding: 7bit Content-Type: text/plain produced by allowing the cured meat to hang in a --4bdc28dd2925186e1e85e544cb68fd60 Content-Transfer-Encoding: 8bit Content-Type: text/plain produced by allowing the cured meat to hang in a --4bdc28dd2925186e1e85e544cb68fd60-- . Address: the3969@bla.com Zipcode: the3969@bla.com City: the3969@bla.com Telephone number: the3969@bla.com E-mail address: the3969@bla.com Message: the3969@bla.com |
Met de volgende headers
code:
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
| Return-Path: <zzz@xxx.com> Received: from mx2.tilbu1.nb.home.nl ([213.51.146.140]) by mta1.tilbu1.nb.home.nl (InterMail vM.6.01.04.03 201-2131-118-103-20050206) with ESMTP id <20060923064420.HGJG1054.mta1.tilbu1.nb.home.nl@mx2.tilbu1.nb.home.nl> for <yyy@xxx.nl>; Sat, 23 Sep 2006 08:44:20 +0200 Received: from xeon-1.amsrbe.sensson.net ([83.98.148.180]:46505 helo=consulo.sensson.net) by mx2.tilbu1.nb.home.nl with esmtp (Exim 4.30) id 1GR1FK-0005DJ-Ty for yyy@xxx.nl; Sat, 23 Sep 2006 08:44:18 +0200 Received: from apache by consulo.sensson.net with local (Exim 4.63) (envelope-from <zzz@xxx.com>) id 1GR18b-0004jo-1a for xxx@home.nl; Sat, 23 Sep 2006 08:37:21 +0200 To: yyy@xxx.nl Subject: contact form X-Sender: the3969@xxx.com <the3969@xxx.com> From: info@xxx.nl <info@xxx.nl> Reply-To: info@xxx.nl <info@xxx.nl> Date: Sat, 23 Sep 2006 08:37:21 +0200 Message-ID: <20060923083721selman@www.xxx.com> Delivered-to: info@xxx.nl <info@xxx.nl> MIME-Version: 1.0 X-Priority: 1 Importance: High X-MSMail-Priority: High X-Mailer: SelmanD Mailler With PHP! X-AtHome-MailScanner-Information: Neem contact op met support@home.nl voor meer informatie X-AtHome-MailScanner: Found to be clean |
Nou is natuurlijk de vraag, worden het echt misbruikt of is het een poging tot

[gvr]muze[nl] says: fear is the mind killer