This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Testing for HTTP Incoming requests (OTG-INPVAL-017)"

From OWASP
Jump to: navigation, search
(TCP-level Network Traffic Capture)
(Port Forwarding)
 
Line 36: Line 36:
  
 
=== Port Forwarding ===
 
=== Port Forwarding ===
 +
Port forwarding is another way to allow us intercept http requests without changes of client side.
 +
You can also use Charles as a SOCKS proxy to act as port forwarding or uses of Port Forwarding tools.
 +
It will allow us to forward all coming client side captured traffic to web server port.
  
 +
 +
The testing flow will be:
 +
<pre>
 +
1. Install the Charles or port forwarding on another machine or web Server
 +
2. Configure the Charles as Socks proxy as port forwarding.
 +
 +
</pre>
  
 
=== TCP-level Network Traffic Capture ===
 
=== TCP-level Network Traffic Capture ===

Latest revision as of 23:55, 9 April 2016

Summary

This section describes how to monitor all incoming/outgoing http requests on both client or web server side. The purpose of this testing is to verify if there is unnecessary or suspicious http request sending in the background.


Most of Web security testing tools (i.e. AppScan, BurpSuite, ZAP) act as Http Proxy. This will require changes of proxy on client side application or browser. The testing techniques listed below is primary focused on how we can monitor Http requests without changes of client side which will be more close to production usage scenario.

Test Objectives

1. Monitor all incoming and outgoing http requests to the Web Server to inspect any suspicious requests.

2. Monitor http traffic without changes of end user Browser proxy or client-side application.

How to Test

Reverse Proxy

There is situation that we would like to monitor all http incoming requests on web server side but we can't change configuration on browser or application client side. In this scenario, we can setup reverse proxy on web server side to monitor all incoming/outgoing requests on web server side.

For windows platform, Fiddler is recommended. It provides not only monitor but can also edit/reply the http requests. Refer the refernece for how to configure fiddler as reverse Proxy.

http://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/UseFiddlerAsReverseProxy

For Linux platform, Charles Web Debugging Proxy may be used.

The testing steps:

1. Install Fiddler or Charles on Web Server

2. Configure the Fiddler or Charles as Reverse Proxy

3. Capture the http traffic

4. Inspect Http traffic

5. Modify Http requests and replay the modified requests for testing

Port Forwarding

Port forwarding is another way to allow us intercept http requests without changes of client side. You can also use Charles as a SOCKS proxy to act as port forwarding or uses of Port Forwarding tools. It will allow us to forward all coming client side captured traffic to web server port.


The testing flow will be:

1. Install the Charles or port forwarding on another machine or web Server
2. Configure the Charles as Socks proxy as port forwarding. 

TCP-level Network Traffic Capture

This technique monitor all the network traffic at TCP-level. TCPDump or WireShark tools can be used. However, these tools don't allow us edit the captured traffic and send modified http requests for testing. To replay the captured traffic (PCAP) packets, Ostinato can be used.

The testing steps will be:

1. Activate TCPDump or WireShark on Web Server side to capture network traffic

2. Monitor the captured files (PCAP)

3. Edit PCAP files by Ostinato tool based on need

4. Reply the http requests

Fiddler or Charles are recommended since these tools can capture http traffic and also easily edit/reply the modified http requests. In addition, if the web traffic is HTTPS, the wireshark will need to import the web server private key to inspect the HTTPS message body. Otherwise, the HTTPS message body of the captured traffic will all be encrypted.

Tools

  • Fiddler
  • TCPProxy
  • Charles Web Debugging Proxy
  • WireShark
  • PowerEdit-Pcap
  • WireEdit
  • pcapteller
  • replayproxy
  • Ostinato

References