2011-03-02 5 views
1

받는 사람 : 전자 메일이 제거되면 전자 메일 헤더에 상주 정보가 있습니까?전자 메일 헤더의 중요한 정보입니까?

내가받는 이유는 수신 한 스팸을 문서화하기 위해 프로젝트를 시작하기 때문입니다. 헤더를 게시 할 계획입니다 (이메일과 이름이 삭제됨). 헤더 내용

생각을 기반으로 어쨌든 스패머 (또는 다른 사람) 가능한 개인 정보를 검색 할 수있는 경우

그래서 궁금?

답변

1

글쎄, 라우팅 경로가 있습니다. Received 헤더는 IP 주소와 함께 어떤 서버가 중계했는지 보여줍니다. DNS 이름과 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

관련 문제