1
State-Based Attacks
CPSC 328 Spring 2009
State
- Web is “stateless”
- Server does not care what page or order
- Can follow any sequence of clicks to view
content
- Can go straight to content
- External links
- URL typing
State-Based Attacks CPSC 328 Spring 2009 State Web is stateless - - PDF document
State-Based Attacks CPSC 328 Spring 2009 State Web is stateless Server does not care what page or order Can follow any sequence of clicks to view content Can go straight to content External links URL typing 1
1
2
(GET request)
3
<html> <head> <title>My Page</title> </head> <body> <form name="myform” action="http://www.foo.com/form.php” method="POST"> <div align="center"> <input type="text" size="25" value="Enter your name here!"> <input type="hidden" name="Language” value="English"> <br><br> </div> </form> </body> </html>
4
http://www.foo.com/script.php?user=mike&passwd=guessWho
5
http://www.foo.com/script.php?user=mike&passwd=bigDummy
6
behaviors
7
8
9
10
11
12