Writing email sniffer

2020-06-23 04:58发布

I am interested in writing an email sniffer that saves all emails sent via web based clients to hd, but I can't work out how to do this. How can I catch HTTPS mail before it is encrypted?

I would really appriciate some useful info. I cannot find anything information on the web. There's a program called HTTP Analyzer V5 that does the exact thing I want to make.

How should I start?

If I make a packet sniffer, it's useless because all data is encrypted.

Is there any other option?

标签: email sniffer
8条回答
The star\"
2楼-- · 2020-06-23 05:38

Programs like HTTP Analyzer can catch the HTTPS data because they insert themselves in the HTTPS stack. As a result, they get the data after it's generated but before it's being encrypted and put in IP packets. This is highly non-trivial.

An alternative might be to "build your own browser". This is easier than you'd think. FireFox is open source, and Internet Explorer is just a small graphic shell around the MSHTML web component. If you use your browser only with e.g. Gmail, then you don't need an address bar, favorites, view source etcetera, so you can write an even smaller shell around MSHTML. Just hardcode in GMail etcetera.

查看更多
爷、活的狠高调
3楼-- · 2020-06-23 05:41

You can write a browser extension that intercepts the HTTP request before the browser actually sends (and encrypts it). The exact details depend on the browser you use (e.g. Firefox, Explorer).

查看更多
【Aperson】
4楼-- · 2020-06-23 05:42

Could you make a special webpage for displaying GMail that can at the same time load your own JavaScript file, such as in a hidden frame or DIV etc?

You could then intercept your email's string contents before it leaves the HTTP port of the browser, and logs itself onto a local text file?

This is assuming GMail don't use dynamic ID tags for their email forms

查看更多
Juvenile、少年°
5楼-- · 2020-06-23 05:47

You can't. The data is encrypted inside of the browser program before being sent over HTTP.

Since you only seem to have access to HTTP, it's too late.

You might want to consider a keylogger to intercept the text as it enters the browser form (and the keylogger needs to be able to catch pasted text).

Of course, most decent virus checkers will detect the keylogger.

Hardware keylogger?

It might help us to help you if you cna explain more about what you want to do and where you have access.

查看更多
ら.Afraid
6楼-- · 2020-06-23 05:50

If you have hardware contact in your local area it will by preaty easy, but now days you can't easy do sniffing. When hubs are replaced by switches analyzers are worthless for this. But http is over tcp (supplied with others backend protocols) so you can catch tcp frame and do some mash direct stream to your pc (or specialized device with uC because nowdays systems and programming platforms block low level operations).

查看更多
爱情/是我丢掉的垃圾
7楼-- · 2020-06-23 05:56

You can capture HTTPS traffic by hooking the encryption function that the email app uses. This is how the Zeus and SpyEye malware works.

There are several crypto functions that the email app might be using eg CryptEncrypt or one of the openssl encrypt functions.

On Windows, you can use use MadCodeHook, Detours or some other API hooking method to hook the desired function. When the encryption function is intercepted, you can log the plain text and then call the original function.

查看更多
登录 后发表回答