2011-03-02 69 views
1

如果刪除了to:電子郵件,電子郵件標題中是否有任何敏感信息?電子郵件標題中的敏感信息?

我問的原因是因爲我正在啓動一個項目(與許多其他項目一樣)來記錄收到的垃圾郵件。我計劃發佈標題(刪除我的電子郵件和名稱)。

所以我想知道是否有無論如何垃圾郵件發送者(或其他人)能可能獲取私人信息以及根據標題內容

的思考?

回答

1

那麼,有路由路徑 - Received標題顯示哪些服務器中繼它,連同他們的IP地址。如果您擔心在那裏暴露DNS名稱和IP地址,您可能需要刪除它們。還有Message-ID,這應該是在源服務器唯一的,但不是在這種情況下,真正相關:

Delivered-To: [email protected] 
Received: by 10.150.52.9 with SMTP id z9cs167242ybz; Wed, 2 Mar 2011 
01:23:55 -0800 (PST) 
Received: by 10.204.123.144 with SMTP id p16mr7228369bkr.25.1299057834954; 
Wed, 02 Mar 2011 01:23:54 -0800 (PST) 
Return-Path: <[email protected]> 
Received: from www.example.org (www.example.org [127.25.43.2]) by 
mx.example.com with SMTP id b20si16526479bkb.8.2011.03.02.01.23.53; Wed, 02 
Mar 2011 01:23:53 -0800 (PST) 
Received-SPF: unknown (example.com: domain of [email protected] uses a 
mechanism not recognized by this client. unknown mechanisms:)) 
client-ip=89.250.243.218; 
Authentication-Results: mx.example.com; spf=permerror (example.com: domain of 
[email protected] uses a mechanism not recognized by this client. unknown 
    mechanisms:)) [email protected] 
Received: (qmail 16028 invoked from network); 2 Mar 2011 10:23:57 +0100 
Received: from unknown (HELO localhost) (127.0.0.1) by localhost with SMTP; 
2 Mar 2011 10:23:57 +0100 
X-Mailer: [redacted] v3.0 
X-Priority: 3 
MIME-Version: 1.0 
Date: Wed, 02 Mar 2011 10:23:57 +0100 
Subject: [redacted] 
Content-Type: multipart/alternative; boundary="=_932aa962c78a5f164be3066dcfdce0e7" 
From: "[email protected]" <[email protected]> 
Reply-To: [email protected] 
Message-ID: <[email protected]> 
To: [email protected] 

所以,最相關的部分將是路由數據 - 除非您使用託管服務,您可以隱藏在人羣中(例如gMail),這可以用來猜測收件人的域名。

+0

太棒了。謝謝! – kburns