Search This Blog

Monday, October 25, 2010

Fiddler as proxy

Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet.
its a MUST tool for web developer no matter if you develop for .NET or java.

in the next link you will find important info how to set fiddler as proxy and monitor ALL your web traffic from your application .
Configure an application to use Fiddler

hope you will find it usefull.
Yaniv T

Monday, October 18, 2010

How to enable SSL debugging in java parogram

You can see additional information, such as information about the SSL handshake, by adding jvm option
-Djavax.net.debug=ssl,handshake
-Djavax.net.debug=true
You can verify that this is an SSL mutual authentication by looking at the CertificateRequest during handshake.


If you want to see more debugging information, use the jvm option -Djavax.net.debug=all.


its took me a while to find it  :)
enjoy
Yaniv

Monday, October 11, 2010

How to block IP from different countries ?

Are you frustrated with malicious attacks originating from specific countries?
if your answer is YES ( a big yes) , you will find the next site Country IP Blocks  very useful.

Their database contains up to the minute network information on nearly 250 countries worldwide. They provide the data free of charge in CIDR and Netmask format.

secure your stuff

Yaniv T


Wednesday, October 6, 2010

Visual Studio 2010 and .NET Framework 4 Training Kit

In the next link you can get the "self study kit" of Visual studio 2010 and .Net 4.
Visual Studio 2010 and .NET Framework 4 Training Kit.

You can download the Microsoft Enterprise Library 5.0 from here.


study well ...
Yaniv T

Tuesday, October 5, 2010

log4j xml configuration

for my java web app i used the log4j logging.
here is a good link how to start and configure your log4j xml file configuration.
Log4j XML Configuration Primer

enjoy
Yaniv T