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 WS Replay (OWASP-WS-007)"

From OWASP
Jump to: navigation, search
(References)
Line 8: Line 8:
 
== Description of the Issue ==
 
== Description of the Issue ==
 
   
 
   
A replay attack is a "man-in-the-middle" type of attack where a message is intercepted and replayed by an attacker to impersonate the original sender.  For web services, as with other types of HTTP traffic, a sniffer such as Ethereal or AirSniff can capture traffic posted to a web service and using a tool like WebScarab, a tester can resend a packet to the target server.  An attacker can attempt to resend the original message or change the message in order to compromise the host server.
+
A replay attack is a "man-in-the-middle" type of attack where a message is intercepted and replayed by an attacker to impersonate the original sender.  For web services, as with other types of HTTP traffic, a sniffer such as Ethereal or Wireshark can capture traffic posted to a web service and using a tool like WebScarab, a tester can resend a packet to the target server.  An attacker can attempt to resend the original message or change the message in order to compromise the host server.
  
 
== Black Box testing and example ==
 
== Black Box testing and example ==
Line 14: Line 14:
 
'''Testing for Replay Attack vulnerabilities:'''
 
'''Testing for Replay Attack vulnerabilities:'''
  
1. Using Ethereal on a network, sniff traffic and filter for web service traffic.
+
1. Using Ethereal on a network, sniff traffic and filter for web service traffic. Another alternative is to install WebScarab and use it as a proxy to capture http traffic
  
 
<nowiki>
 
<nowiki>
Line 21: Line 21:
 
</nowiki>
 
</nowiki>
  
2. Using the packets captured by ethereal, use WebScarab to initiate the replay attack by reposting the packet.  It may be necessary to capture many packets over time to determine session id patterns in order to assume a valid session id for the replay attack.
+
2. Using the packets captured by ethereal, use TCPReplay to initiate the replay attack by reposting the packet.  It may be necessary to capture many packets over time to determine session id patterns in order to assume a valid session id for the replay attack. It is also possible to manually post http traffic captured by WebScarab, using WebScarab
  
 
<nowiki><proof of impersonation></nowiki>
 
<nowiki><proof of impersonation></nowiki>
Line 47: Line 47:
  
 
* OWASP WebScarab - http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project
 
* OWASP WebScarab - http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project
 
+
* Ethereal - http://www.ethereal.com/
 +
* Wireshark - http://www.wireshark.org/ (recommended instead of Ethereal - same developers, same codebase)
 +
* TCPReplay - http://tcpreplay.synfin.net/trac/wiki/manual
  
 
{{Category:OWASP Testing Project AoC}}
 
{{Category:OWASP Testing Project AoC}}

Revision as of 01:05, 20 November 2006

[Up]
OWASP Testing Guide v2 Table of Contents

Brief Summary

This section describes testing replay vulnerabilities of a web service. The threat for a replay attack is that the attacker can assume the identity of a valid user and commit some nefarious act without detection.

Description of the Issue

A replay attack is a "man-in-the-middle" type of attack where a message is intercepted and replayed by an attacker to impersonate the original sender. For web services, as with other types of HTTP traffic, a sniffer such as Ethereal or Wireshark can capture traffic posted to a web service and using a tool like WebScarab, a tester can resend a packet to the target server. An attacker can attempt to resend the original message or change the message in order to compromise the host server.

Black Box testing and example

Testing for Replay Attack vulnerabilities:

1. Using Ethereal on a network, sniff traffic and filter for web service traffic. Another alternative is to install WebScarab and use it as a proxy to capture http traffic

<image> <ethereal packet example>

2. Using the packets captured by ethereal, use TCPReplay to initiate the replay attack by reposting the packet. It may be necessary to capture many packets over time to determine session id patterns in order to assume a valid session id for the replay attack. It is also possible to manually post http traffic captured by WebScarab, using WebScarab

<proof of impersonation>

Result Expected:

The tester can assume the identity of the attacker.

Gray Box testing and example

Testing for Replay Attack vulnerabilities

1. Does the web service employ some means of preventing the replay attack? Such as pseudo random Session tokens, Nonces with MAC addresses or Timestamping, for example.

<code example>

2. Can the site employ SSL - this will prevent unauthorized attempts to replay messages?

References

Whitepapers

Tools


OWASP Testing Guide v2

Here is the OWASP Testing Guide v2 Table of Contents