Tuesday, March 08, 2005

Open Source Software in Java(tm)

Here is good link that maintains a list of open source projects by solution

http://java-source.net/

Thursday, March 03, 2005

Sniffing into your own computer

Following tools can be used to log and view the packets send and received by applications running on your computer.
WinPcap - the Free Packet Capture Library for Windows

Ethereal - The world's most popular network protocol analyzer

See SSL encrypted messages

If you want to see what is being sent even with SSL turned on, you can install the debug version of the WinInet library. This can log the plaintext version of data exchanged over SSL connections.

Grab an appopriate version from here: http://www.mathies.com/win32tips.html (scroll down to the “Debug versions of Wininet.dll” section). Read the readme for installation instructions. It seems that the instructions were written before Windows File Protection became a feature, so you might have to shut that off to get it installed. This is not for the faint of heart.
[source: virtuelvis.com]